From a068566188bba9d808dfbe1b00c735b6c6952194 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 3 Jan 2008 16:38:05 +0000 Subject: [PATCH] remove trace apparently left in by accident --- compiler/utils/Panic.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.10.4