From 77aae36646c277bcf26cea48c167b657811f0ab3 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 29 May 1996 05:12:55 +0000 Subject: * sysdeps/i386/fpu/__math.h (logb): Correct contraint from =u to =t. Must operate on top of fp reg stack, not second from top. --- ChangeLog | 3 +++ sysdeps/i386/fpu/__math.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index fcdf91c294..1b40afca1c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Wed May 29 00:52:20 1996 Roland McGrath + * sysdeps/i386/fpu/__math.h (logb): Correct contraint from =u to =t. + Must operate on top of fp reg stack, not second from top. + * extra-lib.mk (alltypes-$(lib)): Don't append $(objpfx)$(lib).so. (others): Instead, make this depend on it. diff --git a/sysdeps/i386/fpu/__math.h b/sysdeps/i386/fpu/__math.h index c9bae29ba3..9648ef592e 100644 --- a/sysdeps/i386/fpu/__math.h +++ b/sysdeps/i386/fpu/__math.h @@ -438,7 +438,7 @@ logb (double __x) register double __value; __asm __volatile__ ("fxtract\n\t" - : "=u" (__value) : "0" (__x)); + : "=t" (__value) : "0" (__x)); return __value; } -- cgit v1.2.3