diff options
author | Edward Z. Yang <ezyang@mit.edu> | 2011-04-11 15:33:15 +0100 |
---|---|---|
committer | Edward Z. Yang <ezyang@mit.edu> | 2011-04-11 17:49:23 +0100 |
commit | d76fcd210a944bec112e3bd0888ed5ead5e7b816 (patch) | |
tree | 31d231b3d79d212a2ce57dc5b7c2782937ee42fb /compiler/codeGen | |
parent | b3199f6977fdaed6f3f898aee14bd0af61140cf5 (diff) | |
download | haskell-d76fcd210a944bec112e3bd0888ed5ead5e7b816.tar.gz |
Remove debugging CmmComment from old code generator.
Warning: This change seems to tickle a bug in ghc-stage1 compiler
built with GHC 6.12.1 during validates.
Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
Diffstat (limited to 'compiler/codeGen')
-rw-r--r-- | compiler/codeGen/CgClosure.lhs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/codeGen/CgClosure.lhs b/compiler/codeGen/CgClosure.lhs index da44122a4d..d158bf78ab 100644 --- a/compiler/codeGen/CgClosure.lhs +++ b/compiler/codeGen/CgClosure.lhs @@ -250,7 +250,6 @@ closureCodeBody _binder_info cl_info cc [{- No args i.e. thunk -}] body = do -- in update frame CAF/DICT functions will be -- subsumed by this enclosing cc { enterCostCentre cl_info cc body - ; stmtsC [CmmComment $ mkFastString $ showSDoc $ ppr body] ; cgExpr body } } |