diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-06-16 13:56:21 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-06-16 13:56:21 +0000 |
commit | ea0c9fbe3128dfabcdbc38ed787cf76346c0a871 (patch) | |
tree | fadde504f090c6da2b64d402549aad434d8eae7b /rts/Exception.cmm | |
parent | 9c4abbc0c2d4373eb7c63b1110821dfcb0077661 (diff) | |
download | haskell-ea0c9fbe3128dfabcdbc38ed787cf76346c0a871.tar.gz |
fix one-character error in stack check
Diffstat (limited to 'rts/Exception.cmm')
-rw-r--r-- | rts/Exception.cmm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Exception.cmm b/rts/Exception.cmm index f4327b9ce2..a897990b87 100644 --- a/rts/Exception.cmm +++ b/rts/Exception.cmm @@ -148,7 +148,7 @@ killThreadzh_fast target = R1; exception = R2; - STK_CHK_GEN( WDS(3), R1_PTR | R2_PTR, killThreadzh_fast); + STK_CHK_GEN( WDS(3), R1_PTR & R2_PTR, killThreadzh_fast); /* * We might have killed ourselves. In which case, better be *very* |