From baaed901760276d617fc6ee63e5cba343ba20a91 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 18 Jan 2008 18:01:26 +0000 Subject: [PATCH 1/1] Fix imports when !DEBUG --- compiler/utils/FastBool.lhs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/utils/FastBool.lhs b/compiler/utils/FastBool.lhs index ee9b40f..32cb7ae 100644 --- a/compiler/utils/FastBool.lhs +++ b/compiler/utils/FastBool.lhs @@ -13,7 +13,9 @@ module FastBool ( -- Import the beggars import GHC.Exts +#ifdef DEBUG import Panic +#endif type FastBool = Int# fastBool True = 1# -- 1.7.10.4