Skip to content

Commit

Permalink
bit twiddling fail
Browse files Browse the repository at this point in the history
  • Loading branch information
eightbitraptor committed Jul 19, 2024
1 parent 2aa6a87 commit a76bea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ruby.c
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ feature_option(const char *str, int len, void *arg, const unsigned int enable)
if (NAME_MATCH_P("all", str, len)) {
// YJIT and RJIT cannot be enabled at the same time. We enable only one for --enable=all.
mask &= ~feature_jit_mask | FEATURE_BIT(jit);
mask &= FEATURE_BIT(mmtk);
mask |= FEATURE_BIT(mmtk);
goto found;
}
#if AMBIGUOUS_FEATURE_NAMES
Expand Down

0 comments on commit a76bea9

Please sign in to comment.