diff --git a/ghc/compiler/codeGen/ClosureInfo.lhs b/ghc/compiler/codeGen/ClosureInfo.lhs
index e43d9368db8a02ef7207781800e1e183fab72e38..cd9f4a85839eb16791b35951cea36c218caa537f 100644
--- a/ghc/compiler/codeGen/ClosureInfo.lhs
+++ b/ghc/compiler/codeGen/ClosureInfo.lhs
@@ -52,7 +52,11 @@ module ClosureInfo (
     ) where
 
 IMP_Ubiq(){-uitous-}
+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201
 IMPORT_DELOOPER(AbsCLoop)		-- here for paranoia-checking
+#else
+import {-# SOURCE #-} CLabel ( CLabel )
+#endif
 
 import AbsCSyn
 import StgSyn