diff options
Diffstat (limited to 'contrib/llvm-project/compiler-rt/lib/builtins/floatuntisf.c')
-rw-r--r-- | contrib/llvm-project/compiler-rt/lib/builtins/floatuntisf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm-project/compiler-rt/lib/builtins/floatuntisf.c b/contrib/llvm-project/compiler-rt/lib/builtins/floatuntisf.c index 9dec0ab5c58f..a53659cd1fca 100644 --- a/contrib/llvm-project/compiler-rt/lib/builtins/floatuntisf.c +++ b/contrib/llvm-project/compiler-rt/lib/builtins/floatuntisf.c @@ -26,7 +26,7 @@ COMPILER_RT_ABI float __floatuntisf(tu_int a) { return 0.0F; const unsigned N = sizeof(tu_int) * CHAR_BIT; int sd = N - __clzti2(a); // number of significant digits - int e = sd - 1; // exponent + si_int e = sd - 1; // exponent if (sd > FLT_MANT_DIG) { // start: 0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx // finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR |