diff options
author | David Terei <davidterei@gmail.com> | 2011-12-22 14:40:22 -0800 |
---|---|---|
committer | David Terei <davidterei@gmail.com> | 2012-01-05 17:05:42 -0800 |
commit | 1cb4a07cf284444ed89057f4661db100ea740dc5 (patch) | |
tree | f2308443d9f2a0f9bb4c74bcbc7334f3a69247e2 /compiler/codeGen/CgCon.lhs | |
parent | 9ee9e518fe485107c9a21fed68a7dcc86fe08b4c (diff) | |
download | haskell-1cb4a07cf284444ed89057f4661db100ea740dc5.tar.gz |
Remove unused argument field on CmmJump
Diffstat (limited to 'compiler/codeGen/CgCon.lhs')
-rw-r--r-- | compiler/codeGen/CgCon.lhs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/codeGen/CgCon.lhs b/compiler/codeGen/CgCon.lhs index 17bb9d0ad8..99690945cb 100644 --- a/compiler/codeGen/CgCon.lhs +++ b/compiler/codeGen/CgCon.lhs @@ -352,8 +352,8 @@ cgReturnDataCon con amodes } where enter_it = stmtsC [ CmmAssign nodeReg (cmmUntag (CmmReg nodeReg)), - CmmJump (entryCode (closureInfoPtr (CmmReg nodeReg))) [] ] - jump_to lbl = stmtC (CmmJump (CmmLit lbl) []) + CmmJump (entryCode (closureInfoPtr (CmmReg nodeReg)))] + jump_to lbl = stmtC (CmmJump (CmmLit lbl)) build_it_then return_code = do { -- BUILD THE OBJECT IN THE HEAP -- The first "con" says that the name bound to this |