summaryrefslogtreecommitdiff
path: root/compiler/utils/Outputable.lhs
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2012-07-13 18:15:57 +0100
committerIan Lynagh <igloo@earth.li>2012-07-13 18:15:57 +0100
commit06d8c131a5438b8bd8e35cbef73383dc29923fa8 (patch)
tree6df5c7c6d9bf4eb3fc876de84f3972c232693026 /compiler/utils/Outputable.lhs
parent31afdf5ceb93b520ffeaa470562c0cbd8462bcb6 (diff)
downloadhaskell-06d8c131a5438b8bd8e35cbef73383dc29923fa8.tar.gz
Don't use tracingDynFlags in assertPprPanic
It wasn't needed, but was left over as an oversight
Diffstat (limited to 'compiler/utils/Outputable.lhs')
-rw-r--r--compiler/utils/Outputable.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/Outputable.lhs b/compiler/utils/Outputable.lhs
index 93dfd33606..436b164334 100644
--- a/compiler/utils/Outputable.lhs
+++ b/compiler/utils/Outputable.lhs
@@ -934,7 +934,7 @@ assertPprPanic :: String -> Int -> SDoc -> a
-- ^ Panic with an assertation failure, recording the given file and line number.
-- Should typically be accessed with the ASSERT family of macros
assertPprPanic file line msg
- = pprDebugAndThen tracingDynFlags panic "ASSERT failed!" doc
+ = pprPanic "ASSERT failed!" doc
where
doc = sep [ hsep [ text "file", text file
, text "line", int line ]