diff options
Diffstat (limited to 'compiler/utils/Outputable.lhs')
-rw-r--r-- | compiler/utils/Outputable.lhs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/compiler/utils/Outputable.lhs b/compiler/utils/Outputable.lhs index a6d188ab54..09cf6e84ec 100644 --- a/compiler/utils/Outputable.lhs +++ b/compiler/utils/Outputable.lhs @@ -65,7 +65,7 @@ module Outputable ( -- * Error handling and debugging utilities pprPanic, pprSorry, assertPprPanic, pprPanicFastInt, pprPgmError, - pprTrace, pprDefiniteTrace, warnPprTrace, + pprTrace, warnPprTrace, trace, pgmError, panic, sorry, panicFastInt, assertPanic, pprDebugAndThen, ) where @@ -916,10 +916,6 @@ pprTrace str doc x | opt_NoDebugOutput = x | otherwise = pprDebugAndThen tracingDynFlags trace str doc x -pprDefiniteTrace :: DynFlags -> String -> SDoc -> a -> a --- ^ Same as pprTrace, but show even if -dno-debug-output is on -pprDefiniteTrace dflags str doc x = pprDebugAndThen dflags trace str doc x - pprPanicFastInt :: String -> SDoc -> FastInt -- ^ Specialization of pprPanic that can be safely used with 'FastInt' pprPanicFastInt heading pretty_msg = panicDocFastInt heading pretty_msg |