[project @ 2003-03-27 08:18:21 by simonpj]
authorsimonpj <unknown>
Thu, 27 Mar 2003 08:18:21 +0000 (08:18 +0000)
committersimonpj <unknown>
Thu, 27 Mar 2003 08:18:21 +0000 (08:18 +0000)
Reduce tctrace verbosity

ghc/compiler/typecheck/TcRnDriver.lhs

index 591ce27..5bb8c6c 100644 (file)
@@ -707,16 +707,13 @@ monad; it augments it and returns the new TcGblEnv.
 tcRnGroup :: HsGroup RdrName -> TcM ((TcGblEnv, TcLclEnv), DefUses)
        -- Returns the variables free in the decls, for unused-binding reporting
 tcRnGroup decls
- = do {        showLIE (text "LIE at start of tcRnGroup" <+> ppr decls) ;
-
-               -- Rename the declarations
+ = do {                -- Rename the declarations
        (tcg_env, rn_decls, src_dus) <- rnTopSrcDecls decls ;
        setGblEnv tcg_env $ do {
 
                -- Typecheck the declarations
        tc_envs <- tcTopSrcDecls rn_decls ;
 
-       showLIE (text "LIE at end of tcRnGroup" <+> ppr decls) ;
        return (tc_envs, src_dus)
   }}