From 72d043c04c1b0db0896e2c876a1544434f0428ec Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 29 Mar 2008 14:55:08 +0000 Subject: [PATCH] Remove an #ifdef DEBUG --- compiler/typecheck/TcRnMonad.lhs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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} %************************************************************************ -- 1.7.10.4