diff options
author | simonpj <unknown> | 2005-11-02 17:39:57 +0000 |
---|---|---|
committer | simonpj <unknown> | 2005-11-02 17:39:57 +0000 |
commit | acc7346eb5d6e6000b3a4b0e2f7ea00933dff2a4 (patch) | |
tree | 20dfb8ae834c6a10c93d5c5373df5edd39d8ad92 /ghc/compiler/iface | |
parent | 709d58c007338466175021829aa59cf34b569033 (diff) | |
download | haskell-acc7346eb5d6e6000b3a4b0e2f7ea00933dff2a4.tar.gz |
[project @ 2005-11-02 17:39:57 by simonpj]
Trace output only
Diffstat (limited to 'ghc/compiler/iface')
-rw-r--r-- | ghc/compiler/iface/TcIface.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/iface/TcIface.lhs b/ghc/compiler/iface/TcIface.lhs index 9feeda669c..e10958b0d0 100644 --- a/ghc/compiler/iface/TcIface.lhs +++ b/ghc/compiler/iface/TcIface.lhs @@ -114,7 +114,7 @@ tcImportDecl name = do { initIfaceTcRn (loadWiredInHomeIface name) ; return thing } | otherwise - = do { traceIf (text "tcLookupGlobal" <+> ppr name) + = do { traceIf (text "tcImportDecl" <+> ppr name) ; mb_thing <- initIfaceTcRn (importDecl name) ; case mb_thing of Succeeded thing -> return thing |