[project @ 2003-06-03 15:07:11 by panne]
authorpanne <unknown>
Tue, 3 Jun 2003 15:07:11 +0000 (15:07 +0000)
committerpanne <unknown>
Tue, 3 Jun 2003 15:07:11 +0000 (15:07 +0000)
Nuked debugging output

ghc/compiler/deSugar/DsUtils.lhs

index 290ee47..4556b0a 100644 (file)
@@ -599,8 +599,8 @@ chunkify :: [a] -> [[a]]
 -- The sub-lists of the result all have length <= mAX_TUPLE_SIZE
 -- But there may be more than mAX_TUPLE_SIZE sub-lists
 chunkify xs
-  | n_xs <= mAX_TUPLE_SIZE = pprTrace "Small" (ppr n_xs) [xs] 
-  | otherwise             = pprTrace "Big" (ppr n_xs) (split xs)
+  | n_xs <= mAX_TUPLE_SIZE = {- pprTrace "Small" (ppr n_xs) -} [xs] 
+  | otherwise             = {- pprTrace "Big"   (ppr n_xs) -} (split xs)
   where
     n_xs     = length xs
     split [] = []