summaryrefslogtreecommitdiff
path: root/rts
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2007-03-08 10:19:21 +0000
committerSimon Marlow <simonmar@microsoft.com>2007-03-08 10:19:21 +0000
commitdb027550441fdce8f7bb59500345c47a21e90f25 (patch)
tree3f9b2c5f5f69b4a450b4d9756cb8201b3ecce3f1 /rts
parent5105e8a5a603f9261a084330aa1d411ac0ed0201 (diff)
downloadhaskell-db027550441fdce8f7bb59500345c47a21e90f25.tar.gz
add missing %ENTRY_CODE()
fixes unreg way in HEAD
Diffstat (limited to 'rts')
-rw-r--r--rts/Exception.cmm4
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/Exception.cmm b/rts/Exception.cmm
index c86c6d59ff..ce2ea274bd 100644
--- a/rts/Exception.cmm
+++ b/rts/Exception.cmm
@@ -291,7 +291,7 @@ INFO_TABLE_RET(stg_catch_frame,
#ifdef REG_R1
{
Sp = Sp + SIZEOF_StgCatchFrame;
- jump Sp(SP_OFF);
+ jump %ENTRY_CODE(Sp(SP_OFF));
}
#else
{
@@ -299,7 +299,7 @@ INFO_TABLE_RET(stg_catch_frame,
rval = Sp(0);
Sp = Sp + SIZEOF_StgCatchFrame;
Sp(0) = rval;
- jump Sp(SP_OFF);
+ jump %ENTRY_CODE(Sp(SP_OFF));
}
#endif