diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-11-05 15:41:54 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-11-12 15:27:02 +0000 |
commit | e15981a16c832b8cd7dbba676399fd555a379272 (patch) | |
tree | 3dd3aee6754efe3f62b70b30097e5137d3fac1f8 /rts | |
parent | a1ebe37d8394e35d0a29f21511626d0895db634a (diff) | |
download | haskell-e15981a16c832b8cd7dbba676399fd555a379272.tar.gz |
some W_s should be P_s
Diffstat (limited to 'rts')
-rw-r--r-- | rts/PrimOps.cmm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rts/PrimOps.cmm b/rts/PrimOps.cmm index be8bc1572d..18757bfb36 100644 --- a/rts/PrimOps.cmm +++ b/rts/PrimOps.cmm @@ -885,9 +885,9 @@ INFO_TABLE_RET(stg_catch_stm_frame, CATCH_STM_FRAME, stg_atomicallyzh (P_ stm) { - W_ old_trec; - W_ new_trec; - W_ code, next_invariant, frame_result; + P_ old_trec; + P_ new_trec; + P_ code, next_invariant, frame_result; // stmStartTransaction may allocate MAYBE_GC_P(stg_atomicallyzh, stm); |