From f0192b817c0ed2e0558df2b5d129f9dd0a710f81 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 28 May 2003 12:10:43 +0000 Subject: [PATCH 1/1] [project @ 2003-05-28 12:10:43 by simonmar] Surround import Util with #ifdef DEBUG, to avoid the warning (and so I don't accidentally delete it again). --- ghc/compiler/coreSyn/CoreLint.lhs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc/compiler/coreSyn/CoreLint.lhs b/ghc/compiler/coreSyn/CoreLint.lhs index 76d7ebe..5915c2b 100644 --- a/ghc/compiler/coreSyn/CoreLint.lhs +++ b/ghc/compiler/coreSyn/CoreLint.lhs @@ -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` -- 1.7.10.4