From 690b759d6f672162eb539fb79875f5d7057e7b9e Mon Sep 17 00:00:00 2001 From: obrien Date: Tue, 10 Jun 2003 21:17:55 +0000 Subject: Use C99 compatible ASM statements. (untested, but existing state breaks http://triangle.rtp.freebsd.org/~des/tinderbox-CURRENT-amd64-amd64.brief) --- lib/libc/amd64/gen/ldexp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libc') diff --git a/lib/libc/amd64/gen/ldexp.c b/lib/libc/amd64/gen/ldexp.c index 9b8c1c4..82af207 100644 --- a/lib/libc/amd64/gen/ldexp.c +++ b/lib/libc/amd64/gen/ldexp.c @@ -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 -- cgit v1.1