mirror of git://sourceware.org/git/glibc.git
* sysdeps/i386/fpu/__math.h (logb): Correct contraint from =u to =t.
Must operate on top of fp reg stack, not second from top.
This commit is contained in:
parent
d06b536dc1
commit
77aae36646
|
@ -1,5 +1,8 @@
|
|||
Wed May 29 00:52:20 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||
|
||||
* 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.
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue