From ee96242d5787e1e561cfd1aa08658a0fc251cb5b Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 22 May 1997 16:37:46 +0000 Subject: [PATCH] (logb): Remove second value placed on stack by fxtract. --- sysdeps/i386/fpu/__math.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysdeps/i386/fpu/__math.h b/sysdeps/i386/fpu/__math.h index 86793babe5d..5d7ba4b8439 100644 --- a/sysdeps/i386/fpu/__math.h +++ b/sysdeps/i386/fpu/__math.h @@ -444,10 +444,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; } -- 2.47.2