[project @ 2003-05-28 12:10:43 by simonmar]
authorsimonmar <unknown>
Wed, 28 May 2003 12:10:43 +0000 (12:10 +0000)
committersimonmar <unknown>
Wed, 28 May 2003 12:10:43 +0000 (12:10 +0000)
Surround import Util with #ifdef DEBUG, to avoid the warning (and so I
don't accidentally delete it again).

ghc/compiler/coreSyn/CoreLint.lhs

index 76d7ebe..5915c2b 100644 (file)
@@ -37,10 +37,13 @@ import Type         ( Type, tyVarsOfType, eqType,
 import TyCon           ( isPrimTyCon )
 import BasicTypes      ( RecFlag(..), isNonRec )
 import CmdLineOpts
-import Maybe
-import Util             ( notNull )
 import Outputable
 
+#ifdef DEBUG
+import Util             ( notNull )
+#endif
+
+import Maybe
 import IO              ( hPutStrLn, stderr )
 
 infixr 9 `thenL`, `seqL`