diff options
author | Roland McGrath <roland@gnu.org> | 1996-05-29 05:12:55 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-05-29 05:12:55 +0000 |
commit | 77aae36646c277bcf26cea48c167b657811f0ab3 (patch) | |
tree | 5d018cfb751a453b6c49502e05352b5f13dcbb9c /sysdeps/i386 | |
parent | d06b536dc10bd096d7141fc058399e83275c8e3b (diff) | |
download | glibc-77aae36646c277bcf26cea48c167b657811f0ab3.tar.gz glibc-77aae36646c277bcf26cea48c167b657811f0ab3.tar.xz glibc-77aae36646c277bcf26cea48c167b657811f0ab3.zip |
* sysdeps/i386/fpu/__math.h (logb): Correct contraint from =u to =t. cvs/libc-960529
Must operate on top of fp reg stack, not second from top.
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/fpu/__math.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |