From: Ulrich Drepper Date: Sat, 24 May 1997 22:45:51 +0000 (+0000) Subject: (logb): Fix thinko, reverse output values. X-Git-Tag: cvs/libc-2_0_4~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a83b0f09cb0eb3d148e283696c050220b83dec4c;p=thirdparty%2Fglibc.git (logb): Fix thinko, reverse output values. --- diff --git a/sysdeps/i386/fpu/__math.h b/sysdeps/i386/fpu/__math.h index 5d7ba4b8439..78b2467b65a 100644 --- a/sysdeps/i386/fpu/__math.h +++ b/sysdeps/i386/fpu/__math.h @@ -447,7 +447,7 @@ logb (double __x) register double __value, __junk; __asm __volatile__ ("fxtract\n\t" - : "=t" (__value), "=u" (__junk) : "0" (__x)); + : "=t" (__junk), "=u" (__value) : "0" (__x)); return __value; }