diff options
author | Ian Lynagh <igloo@earth.li> | 2008-04-12 14:01:36 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-04-12 14:01:36 +0000 |
commit | 41515d440265b637abc24e333df5ecfb74659aff (patch) | |
tree | 037d46ea62c602bc9b6837b4e815106420a8ce70 /compiler/codeGen/CgClosure.lhs | |
parent | 5a5557b62bc10c97c58c37bc480a55afb3012175 (diff) | |
download | haskell-41515d440265b637abc24e333df5ecfb74659aff.tar.gz |
(F)SLIT -> (f)sLit in CgClosure
Diffstat (limited to 'compiler/codeGen/CgClosure.lhs')
-rw-r--r-- | compiler/codeGen/CgClosure.lhs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/codeGen/CgClosure.lhs b/compiler/codeGen/CgClosure.lhs index b7360c8893..6c8ed29ce2 100644 --- a/compiler/codeGen/CgClosure.lhs +++ b/compiler/codeGen/CgClosure.lhs @@ -459,8 +459,8 @@ emitBlackHoleCode is_single_entry | otherwise = nopC where - bh_lbl | is_single_entry = mkRtsDataLabel SLIT("stg_SE_BLACKHOLE_info") - | otherwise = mkRtsDataLabel SLIT("stg_BLACKHOLE_info") + bh_lbl | is_single_entry = mkRtsDataLabel (sLit "stg_SE_BLACKHOLE_info") + | otherwise = mkRtsDataLabel (sLit "stg_BLACKHOLE_info") -- If we wanted to do eager blackholing with slop filling, -- we'd need to do it at the *end* of a basic block, otherwise @@ -560,7 +560,7 @@ link_caf cl_info is_upd = do -- so that the garbage collector can find them -- This must be done *before* the info table pointer is overwritten, -- because the old info table ptr is needed for reversion - ; emitRtsCallWithVols SLIT("newCAF") [CmmHinted (CmmReg nodeReg) PtrHint] [node] False + ; emitRtsCallWithVols (sLit "newCAF") [CmmHinted (CmmReg nodeReg) PtrHint] [node] False -- node is live, so save it. -- Overwrite the closure with a (static) indirection |