diff options
author | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-09-03 09:12:20 +0000 |
---|---|---|
committer | Edward O'Callaghan <eocallaghan@auroraux.org> | 2009-09-03 09:12:20 +0000 |
commit | 665671ec897f2f1ba7fe632895a47330389fda40 (patch) | |
tree | 340c656a5ab1da4615e6ccc71476bede340c2629 /compiler-rt/lib/floatuntixf.c | |
parent | d194e13b8d94c7eec1fcb7242b43860619fe881a (diff) | |
download | bcm5719-llvm-665671ec897f2f1ba7fe632895a47330389fda40.tar.gz bcm5719-llvm-665671ec897f2f1ba7fe632895a47330389fda40.zip |
Fix some files that got left behind in early changeset to unnamed unions fix. Credit to Roman Divacky.
llvm-svn: 80913
Diffstat (limited to 'compiler-rt/lib/floatuntixf.c')
-rw-r--r-- | compiler-rt/lib/floatuntixf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/floatuntixf.c b/compiler-rt/lib/floatuntixf.c index 5a48cafec4c..e82d0c1e6ff 100644 --- a/compiler-rt/lib/floatuntixf.c +++ b/compiler-rt/lib/floatuntixf.c @@ -76,7 +76,7 @@ __floatuntixf(tu_int a) /* a is now rounded to LDBL_MANT_DIG bits */ } long_double_bits fb; - fb.u.high.low = (e + 16383); /* exponent */ + fb.u.high.s.low = (e + 16383); /* exponent */ fb.u.low.all = (du_int)a; /* mantissa */ return fb.f; } |