From 4d6c0ee11ff2c439fcd06677d55c57b8644ed7a7 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 23 May 2015 07:26:55 -0500 Subject: [PATCH] compiler: kill a stray pprTrace in OccName Left in by c89bd681d34d, and otherwise rather annoying during the build! Signed-off-by: Austin Seipp --- compiler/basicTypes/OccName.hs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/compiler/basicTypes/OccName.hs b/compiler/basicTypes/OccName.hs index 3ea3aa4105..c3f0c9ffcb 100644 --- a/compiler/basicTypes/OccName.hs +++ b/compiler/basicTypes/OccName.hs @@ -853,9 +853,7 @@ tidyOccName env occ@(OccName occ_sp fs) -- 1, add 1, add 2, add 3, etc which -- moves at quadratic speed through a dense patch - Nothing -> (if k>5 then pprTrace "tidyOccName" (ppr k $$ ppr occ $$ ppr new_fs) - else \x -> x) - (new_env, OccName occ_sp new_fs) + Nothing -> (new_env, OccName occ_sp new_fs) where new_fs = mkFastString (base ++ show n) new_env = addToUFM (addToUFM env new_fs 1) base1 (n+1) -- GitLab