summaryrefslogtreecommitdiff
path: root/compiler/codeGen
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2012-01-04 13:59:06 +0000
committerSimon Marlow <marlowsd@gmail.com>2012-01-04 14:34:04 +0000
commit4464c92badaedc45ce53d6349f6790f6d2298103 (patch)
tree5141e8110f96b041ddfde8f436d54727089f0cbb /compiler/codeGen
parent659f47d4b676544b9cda77ed7ab0e3cd6c2ed6fd (diff)
downloadhaskell-4464c92badaedc45ce53d6349f6790f6d2298103.tar.gz
mkSlowEntryCode: enterLocalIdLabel should be enterIdLabel (#5357)
Diffstat (limited to 'compiler/codeGen')
-rw-r--r--compiler/codeGen/CgClosure.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/CgClosure.lhs b/compiler/codeGen/CgClosure.lhs
index 7bad8516d9..1ebe22e66e 100644
--- a/compiler/codeGen/CgClosure.lhs
+++ b/compiler/codeGen/CgClosure.lhs
@@ -374,7 +374,7 @@ mkSlowEntryCode cl_info reg_args
stk_adj_pop = CmmAssign spReg (cmmRegOffW spReg final_stk_offset)
stk_adj_push = CmmAssign spReg (cmmRegOffW spReg (- final_stk_offset))
- jump_to_entry = CmmJump (mkLblExpr (enterLocalIdLabel name has_caf_refs)) []
+ jump_to_entry = CmmJump (mkLblExpr (enterIdLabel name has_caf_refs)) []
\end{code}