From: Andreas Schwab Date: Sat, 13 Feb 1999 16:51:29 +0000 (+0000) Subject: * sysdeps/m68k/fpu/s_modf.c: Optimized by using __m81_test instead X-Git-Tag: glibc-2.16-ports-before-merge~2933 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=02c1ba5bdf81445777452bd7e099fd2aa55e035a;p=thirdparty%2Fglibc.git * sysdeps/m68k/fpu/s_modf.c: Optimized by using __m81_test instead of separare explicit comparisons. --- diff --git a/sysdeps/m68k/fpu/s_modf.c b/sysdeps/m68k/fpu/s_modf.c index 6c2449aa567..52ee64caad2 100644 --- a/sysdeps/m68k/fpu/s_modf.c +++ b/sysdeps/m68k/fpu/s_modf.c @@ -33,15 +33,18 @@ float_type s(__modf) (float_type x, float_type *iptr) { float_type x_int, result; + unsigned long x_cond; + __asm ("fintrz%.x %1, %0" : "=f" (x_int) : "f" (x)); *iptr = x_int; - if (m81(__isinf) (x)) + x_cond = __m81_test (x); + if (x_cond & __M81_COND_INF) { result = 0; - if (x < 0) + if (x_cond & __M81_COND_NEG) result = -result; } - else if (x == 0) + else if (x_cond & __M81_COND_ZERO) result = x; else result = x - x_int;