[project @ 2001-10-22 09:05:26 by simonmar]
authorsimonmar <unknown>
Mon, 22 Oct 2001 09:05:26 +0000 (09:05 +0000)
committersimonmar <unknown>
Mon, 22 Oct 2001 09:05:26 +0000 (09:05 +0000)
import CLabe (isAsmTemp) for sparc/alpha (I guess someone removed the
import after a warning from -fwarn-unused-imports, so I've put the
import inside the relevant #ifdef this time).

ghc/compiler/nativeGen/MachCode.lhs

index 1bed8e0..b96f7e6 100644 (file)
@@ -21,6 +21,9 @@ import OrdList                ( OrdList, nilOL, isNilOL, unitOL, appOL, toOL,
 import AbsCUtils       ( magicIdPrimRep )
 import ForeignCall     ( CCallConv(..) )
 import CLabel          ( CLabel, labelDynamic )
+#if sparc_TARGET_ARCH || alpha_TARGET_ARCH
+import CLabel          ( isAsmTemp )
+#endif
 import Maybes          ( maybeToBool )
 import PrimRep         ( isFloatingRep, PrimRep(..) )
 import PrimOp          ( PrimOp(..) )