diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/s_nexttowardf.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/math/s_nexttowardf.c b/math/s_nexttowardf.c index e8c4dd1d8d..06e1bb10cb 100644 --- a/math/s_nexttowardf.c +++ b/math/s_nexttowardf.c @@ -59,10 +59,7 @@ float __nexttowardf(float x, long double y) } hy = hx&0x7f800000; if(hy>=0x7f800000) { - x = x+x; /* overflow */ - if (FLT_EVAL_METHOD != 0) - /* Force conversion to float. */ - asm ("" : "+m"(x)); + x = math_narrow_eval (x+x); /* overflow */ return x; } if(hy<0x00800000) { |