summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-05-24 22:45:51 +0000
committerUlrich Drepper <drepper@redhat.com>1997-05-24 22:45:51 +0000
commita83b0f09cb0eb3d148e283696c050220b83dec4c (patch)
treed5b9513975aa9a53f13fd051064bee1fb77d00bf
parentc6c955c54246e64312317630d656bdb8ba94ef18 (diff)
(logb): Fix thinko, reverse output values.
-rw-r--r--sysdeps/i386/fpu/__math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/i386/fpu/__math.h b/sysdeps/i386/fpu/__math.h
index 5d7ba4b843..78b2467b65 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;
}