Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tobias Decking
GHC
Commits
aa07427a
Commit
aa07427a
authored
Sep 03, 2004
by
simonmar
Browse files
[project @ 2004-09-03 10:11:57 by simonmar]
Fix bug in isEmptyMVar#
parent
dcb182ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/rts/PrimOps.cmm
View file @
aa07427a
...
...
@@ -933,9 +933,9 @@ isEmptyMVarzh_fast
/* args: R1 = MVar closure */
if (GET_INFO(R1) == stg_EMPTY_MVAR_info) {
RET_N(0);
} else {
RET_N(1);
} else {
RET_N(0);
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment