diff options
Diffstat (limited to 'compiler-rt/lib/floatuntidf.c')
-rw-r--r-- | compiler-rt/lib/floatuntidf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/floatuntidf.c b/compiler-rt/lib/floatuntidf.c index 2e8369e9ea9..51d8b2827a3 100644 --- a/compiler-rt/lib/floatuntidf.c +++ b/compiler-rt/lib/floatuntidf.c @@ -74,9 +74,9 @@ __floatuntidf(tu_int a) /* a is now rounded to DBL_MANT_DIG bits */ } double_bits fb; - fb.u.high = ((e + 1023) << 20) | /* exponent */ + fb.u.s.high = ((e + 1023) << 20) | /* exponent */ ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */ - fb.u.low = (su_int)a; /* mantissa-low */ + fb.u.s.low = (su_int)a; /* mantissa-low */ return fb.f; } |