diff options
author | Simon Marlow <marlowsd@gmail.com> | 2010-06-02 09:14:19 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2010-06-02 09:14:19 +0000 |
commit | 291d3f7d32206c026de19b9dbea4fe29cc12a052 (patch) | |
tree | 92e4531831cbe1a3f5e703d5b055a992153fb886 /compiler | |
parent | 193f6ef106e2840882151ae9f33a02246e8ea047 (diff) | |
download | haskell-291d3f7d32206c026de19b9dbea4fe29cc12a052.tar.gz |
__stg_EAGER_BLACKHOLE_INFO -> __stg_EAGER_BLACKHOLE_info (#4106)
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/nativeGen/AsmCodeGen.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nativeGen/AsmCodeGen.lhs b/compiler/nativeGen/AsmCodeGen.lhs index 30af913b29..d79fbb69e0 100644 --- a/compiler/nativeGen/AsmCodeGen.lhs +++ b/compiler/nativeGen/AsmCodeGen.lhs @@ -872,7 +872,7 @@ cmmExprConFold referenceKind expr CmmReg (CmmGlobal EagerBlackholeInfo) | not opt_PIC -> cmmExprConFold referenceKind $ - CmmLit (CmmLabel (mkCmmCodeLabel rtsPackageId (fsLit "__stg_EAGER_BLACKHOLE_INFO"))) + CmmLit (CmmLabel (mkCmmCodeLabel rtsPackageId (fsLit "__stg_EAGER_BLACKHOLE_info"))) CmmReg (CmmGlobal GCEnter1) | not opt_PIC -> cmmExprConFold referenceKind $ |