fix DEBUG build
authorSimon Marlow <marlowsd@gmail.com>
Mon, 31 Jan 2011 12:34:33 +0000 (12:34 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Mon, 31 Jan 2011 12:34:33 +0000 (12:34 +0000)
compiler/cmm/OptimizationFuel.hs

index e1f1e3c..057a965 100644 (file)
@@ -21,7 +21,9 @@ import Data.IORef
 import Control.Monad
 import StaticFlags (opt_Fuel)
 import UniqSupply
-import Panic ()
+#ifdef DEBUG
+import Panic
+#endif
 
 import Compiler.Hoopl
 import Compiler.Hoopl.GHC (getFuel, setFuel)