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:
David E. O'Brien 2003-06-10 21:17:55 +00:00
parent 0315901c7c
commit 11f0fab4fa

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