From a83b0f09cb0eb3d148e283696c050220b83dec4c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 24 May 1997 22:45:51 +0000 Subject: [PATCH] (logb): Fix thinko, reverse output values. --- sysdeps/i386/fpu/__math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2