Skip to content
Snippets Groups Projects
Commit 1c2b8381 authored by Simon Marlow's avatar Simon Marlow
Browse files

stg_enter_checkbh: fix offsets for profiling

parent cbe24168
No related branches found
No related tags found
No related merge requests found
...@@ -169,8 +169,8 @@ __stg_gc_enter_1 ...@@ -169,8 +169,8 @@ __stg_gc_enter_1
INFO_TABLE_RET( stg_enter_checkbh, RET_SMALL, P_ unused) INFO_TABLE_RET( stg_enter_checkbh, RET_SMALL, P_ unused)
{ {
R1 = Sp(1); R1 = StgUpdateFrame_updatee(Sp);
Sp_adj(2); Sp = Sp + SIZEOF_StgUpdateFrame;
foreign "C" checkBlockingQueues(MyCapability() "ptr", foreign "C" checkBlockingQueues(MyCapability() "ptr",
CurrentTSO) [R1]; CurrentTSO) [R1];
ENTER(); ENTER();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment