diff options
Diffstat (limited to 'sysdeps/libm-i387/i686/s_fminl.S')
-rw-r--r-- | sysdeps/libm-i387/i686/s_fminl.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/libm-i387/i686/s_fminl.S b/sysdeps/libm-i387/i686/s_fminl.S index 089be40bd4..f125531112 100644 --- a/sysdeps/libm-i387/i686/s_fminl.S +++ b/sysdeps/libm-i387/i686/s_fminl.S @@ -1,5 +1,5 @@ /* Compute minimum of two numbers, regarding NaN as missing argument. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -29,7 +29,7 @@ ENTRY(__fminl) fcmovu %st(1), %st // now %st contains y if not NaN, x otherwise fucomi %st(1), %st - fcmovb %st(1), %st + fcmovnb %st(1), %st fstp %st(1) |