diff gen/abi.cpp @ 1002:c749648ed2b8

Fix cfloat return on x86_64: only perform ABI transformation for non-extern(D) functions. There's no need to waste cycles with extern(D), which we get to define ourselves. Fixes tests/mini/asm8.d. (Since the asm abiret code already assumed {xmm0, xmm1} returns)
author Frits van Bommel <fvbommel wxs.nl>
date Thu, 26 Feb 2009 23:35:39 +0100
parents 6e7dc3caccdd
children e8c6dbcd33d1
line wrap: on
line diff
--- a/gen/abi.cpp	Thu Feb 26 22:47:06 2009 +0100
+++ b/gen/abi.cpp	Thu Feb 26 23:35:39 2009 +0100
@@ -180,7 +180,8 @@
     // test if rewrite applies to function
     bool test(TypeFunction* tf)
     {
-        return (tf->next->toBasetype() == Type::tcomplex32);
+        return (tf->linkage != LINKd) 
+            && (tf->next->toBasetype() == Type::tcomplex32);
     }
 };