diff options
author | Simon Marlow <simonmar@microsoft.com> | 2008-01-03 16:38:05 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2008-01-03 16:38:05 +0000 |
commit | a068566188bba9d808dfbe1b00c735b6c6952194 (patch) | |
tree | 61691c434066c835fd0b9d436288137d07fbf2c7 /compiler/utils/Panic.lhs | |
parent | d39d36f836daa3fecd747ebabde09ac895a9553e (diff) | |
download | haskell-a068566188bba9d808dfbe1b00c735b6c6952194.tar.gz |
remove trace apparently left in by accident
Diffstat (limited to 'compiler/utils/Panic.lhs')
-rw-r--r-- | compiler/utils/Panic.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/Panic.lhs b/compiler/utils/Panic.lhs index 95878c4f52..baf1bf3e28 100644 --- a/compiler/utils/Panic.lhs +++ b/compiler/utils/Panic.lhs @@ -135,7 +135,7 @@ Panics and asserts. \begin{code} panic, pgmError :: String -> a -panic x = trace ("Panic (" ++ x ++ ")") (Exception.throwDyn (Panic x)) +panic x = Exception.throwDyn (Panic x) pgmError x = Exception.throwDyn (ProgramError x) -- #-versions because panic can't return an unboxed int, and that's |