diff options
author | Takashi Kokubun <[email protected]> | 2022-06-15 10:19:33 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2022-06-15 10:52:37 -0700 |
commit | 23459e4dbb736b28873a85637d141f77167cacee (patch) | |
tree | 442e34d267d5a1d3d6930073c0cda417a0cfc93d /inits.c | |
parent | 1162523bae926cfa6128043b635e28c14b732754 (diff) |
Move RubyVM::MJIT to builtin Ruby
just less C code to maintain
Diffstat (limited to 'inits.c')
-rw-r--r-- | inits.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -101,6 +101,9 @@ rb_call_builtin_inits(void) BUILTIN(yjit); BUILTIN(nilclass); BUILTIN(marshal); +#if USE_MJIT + BUILTIN(mjit); +#endif Init_builtin_prelude(); } #undef CALL |