diff options
Diffstat (limited to 'sysdeps/libm-i387/i686/s_fmin.S')
-rw-r--r-- | sysdeps/libm-i387/i686/s_fmin.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/libm-i387/i686/s_fmin.S b/sysdeps/libm-i387/i686/s_fmin.S index 9df029996d..383e9579f6 100644 --- a/sysdeps/libm-i387/i686/s_fmin.S +++ b/sysdeps/libm-i387/i686/s_fmin.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(__fmin) 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) |