Use C99 compatible ASM statements.

(untested, but existing state breaks
http://triangle.rtp.freebsd.org/~des/tinderbox-CURRENT-amd64-amd64.brief)
This commit is contained in:
obrien 2003-06-10 21:17:55 +00:00
parent 3514f4bda7
commit 690b759d6f

View File

@ -58,7 +58,7 @@ ldexp (double value, int exp)
double temp, texp, temp2;
texp = exp;
#ifdef __GNUC__
asm ("fscale "
__asm ("fscale "
: "=u" (temp2), "=t" (temp)
: "0" (texp), "1" (value));
#else