diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-08-03 20:29:40 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-08-03 20:29:40 +0000 |
commit | 3ce4cf858bbcae18ffc6989ca19522cb8887aab9 (patch) | |
tree | d2bb3412a63fd218ac01407f4a940b2337ba3fdc /rts/HeapStackCheck.cmm | |
parent | 02ec05e6564d9bbb536c5c0f3cd3c1b5503e3aea (diff) | |
download | haskell-3ce4cf858bbcae18ffc6989ca19522cb8887aab9.tar.gz |
Rename primops from foozh_fast to stg_foozh
For consistency with other RTS exported symbols
Diffstat (limited to 'rts/HeapStackCheck.cmm')
-rw-r--r-- | rts/HeapStackCheck.cmm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rts/HeapStackCheck.cmm b/rts/HeapStackCheck.cmm index 0c1af6292e..b516ef2c09 100644 --- a/rts/HeapStackCheck.cmm +++ b/rts/HeapStackCheck.cmm @@ -549,7 +549,7 @@ INFO_TABLE_RET( stg_block_takemvar, RET_SMALL, P_ unused ) { R1 = Sp(1); Sp_adj(2); - jump takeMVarzh_fast; + jump stg_takeMVarzh; } // code fragment executed just before we return to the scheduler @@ -577,7 +577,7 @@ INFO_TABLE_RET( stg_block_putmvar, RET_SMALL, P_ unused1, P_ unused2 ) R2 = Sp(2); R1 = Sp(1); Sp_adj(3); - jump putMVarzh_fast; + jump stg_putMVarzh; } // code fragment executed just before we return to the scheduler @@ -626,7 +626,7 @@ INFO_TABLE_RET( stg_block_throwto, RET_SMALL, P_ unused, P_ unused ) R2 = Sp(2); R1 = Sp(1); Sp_adj(3); - jump killThreadzh_fast; + jump stg_killThreadzh; } stg_block_throwto_finally |