From: Simon Marlow Date: Thu, 3 Jan 2008 16:38:05 +0000 (+0000) Subject: remove trace apparently left in by accident X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=a068566188bba9d808dfbe1b00c735b6c6952194 remove trace apparently left in by accident --- diff --git a/compiler/utils/Panic.lhs b/compiler/utils/Panic.lhs index 95878c4..baf1bf3 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