diff options
Diffstat (limited to 'sysdeps/i386/fpu/__math.h')
-rw-r--r-- | sysdeps/i386/fpu/__math.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/i386/fpu/__math.h b/sysdeps/i386/fpu/__math.h index 7758fe8598..e6f5a31581 100644 --- a/sysdeps/i386/fpu/__math.h +++ b/sysdeps/i386/fpu/__math.h @@ -430,10 +430,10 @@ __MATH_INLINE double logb (double __x); __MATH_INLINE double logb (double __x) { - register double __value; + register double __value, __junk; __asm __volatile__ ("fxtract\n\t" - : "=t" (__value) : "0" (__x)); + : "=t" (__value), "=u" (__junk) : "0" (__x)); return __value; } |