diff --git a/ghc/compiler/absCSyn/AbsCSyn.lhs b/ghc/compiler/absCSyn/AbsCSyn.lhs
index 7ccf298c2461c04dbc6df109e4bffdf080cd9eb6..f6dab7e3ee72f48185e7431910b611907addf25d 100644
--- a/ghc/compiler/absCSyn/AbsCSyn.lhs
+++ b/ghc/compiler/absCSyn/AbsCSyn.lhs
@@ -39,7 +39,9 @@ IMP_Ubiq(){-uitous-}
 #if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201
 IMPORT_DELOOPER(AbsCLoop)
 #else
+# if  ! OMIT_NATIVE_CODEGEN
 import {-# SOURCE #-} MachMisc
+# endif
 import {-# SOURCE #-} CLabel
 import {-# SOURCE #-} ClosureInfo
 import {-# SOURCE #-} CgRetConv
diff --git a/ghc/compiler/absCSyn/CLabel.lhs b/ghc/compiler/absCSyn/CLabel.lhs
index 9fedf648a141131f85457cdd5a2ced9790cfe360..8b067aaf3ad54b851f670ece4ee6f775893f47d1 100644
--- a/ghc/compiler/absCSyn/CLabel.lhs
+++ b/ghc/compiler/absCSyn/CLabel.lhs
@@ -58,11 +58,11 @@ import {-# SOURCE #-} CgRetConv
 
 
 #if ! OMIT_NATIVE_CODEGEN
-#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201
+# if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201
 IMPORT_DELOOPER(NcgLoop)		( underscorePrefix, fmtAsmLbl )
-#else
+# else
 import {-# SOURCE #-} MachMisc ( underscorePrefix, fmtAsmLbl )
-#endif
+# endif
 #endif
 
 import CStrings		( pp_cSEP )