From d7b9eca798dc4148130a1df459fb246295d0eca6 Mon Sep 17 00:00:00 2001 From: das Date: Mon, 16 Feb 2004 10:02:51 +0000 Subject: Fix a typo in the !__GNUC__ case and remove an obsolete comment. --- lib/libc/amd64/gen/ldexp.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lib/libc/amd64/gen') diff --git a/lib/libc/amd64/gen/ldexp.c b/lib/libc/amd64/gen/ldexp.c index 82af207..b01b937 100644 --- a/lib/libc/amd64/gen/ldexp.c +++ b/lib/libc/amd64/gen/ldexp.c @@ -49,8 +49,6 @@ __FBSDID("$FreeBSD$"); /* * We do the conversion in C to let gcc optimize it away, if possible. - * The "fxch ; fstp" stuff is because value is still on the stack - * (stupid 8087!). */ double ldexp (double value, int exp) @@ -62,7 +60,7 @@ ldexp (double value, int exp) : "=u" (temp2), "=t" (temp) : "0" (texp), "1" (value)); #else -error unknown asm +#error unknown asm #endif return (temp); } -- cgit v1.1