We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f03095 commit 0ab7833Copy full SHA for 0ab7833
ruby.c
@@ -119,7 +119,11 @@ enum feature_flag_bits {
119
EACH_FEATURES(DEFINE_FEATURE, COMMA),
120
DEFINE_FEATURE(frozen_string_literal_set),
121
feature_debug_flag_first,
122
+#if !USE_YJIT && USE_ZJIT
123
+ DEFINE_FEATURE(jit) = feature_zjit,
124
+#else
125
DEFINE_FEATURE(jit) = feature_yjit,
126
+#endif
127
feature_jit_mask = FEATURE_BIT(yjit) | FEATURE_BIT(zjit),
128
129
feature_debug_flag_begin = feature_debug_flag_first - 1,
0 commit comments