From: simonmar Date: Wed, 28 May 2003 12:10:43 +0000 (+0000) Subject: [project @ 2003-05-28 12:10:43 by simonmar] X-Git-Tag: Approx_11550_changesets_converted~849 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=f0192b817c0ed2e0558df2b5d129f9dd0a710f81;p=ghc-hetmet.git [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). --- 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`