remove trace apparently left in by accident
authorSimon Marlow <simonmar@microsoft.com>
Thu, 3 Jan 2008 16:38:05 +0000 (16:38 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Thu, 3 Jan 2008 16:38:05 +0000 (16:38 +0000)
compiler/utils/Panic.lhs

index 95878c4..baf1bf3 100644 (file)
@@ -135,7 +135,7 @@ Panics and asserts.
 
 \begin{code}
 panic, pgmError :: String -> a
 
 \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
 pgmError x = Exception.throwDyn (ProgramError x)
 
 --  #-versions because panic can't return an unboxed int, and that's