From: Ian Lynagh Date: Sat, 29 Mar 2008 14:55:08 +0000 (+0000) Subject: Remove an #ifdef DEBUG X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=72d043c04c1b0db0896e2c876a1544434f0428ec Remove an #ifdef DEBUG --- diff --git a/compiler/typecheck/TcRnMonad.lhs b/compiler/typecheck/TcRnMonad.lhs index 3c6c59e..dcba808 100644 --- a/compiler/typecheck/TcRnMonad.lhs +++ b/compiler/typecheck/TcRnMonad.lhs @@ -49,6 +49,7 @@ import DynFlags import StaticFlags import FastString import Panic +import Util import System.IO import Data.IORef @@ -815,11 +816,9 @@ debugTc is useful for monadic debugging code \begin{code} debugTc :: TcM () -> TcM () -#ifdef DEBUG -debugTc thing = thing -#else -debugTc thing = return () -#endif +debugTc thing + | debugIsOn = thing + | otherwise = return () \end{code} %************************************************************************