summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2021-12-15 20:02:30 -0800
committerGitHub <noreply@github.com>2021-12-15 20:02:30 -0800
commit02ba0bda7e548fcc7245d246324e253e5e2fc96a (patch)
treef3ff61c451a2f2f928ca6e84148886a107794149 /vm.c
parent40cc8e9231d9c0ed4cdc1cefb810686bff12dc3e (diff)
Remove RubyVM::JIT (#5275)
[Feature #18349] reverts [Feature #17490]
Notes
Notes: Merged-By: k0kubun <takashikkbn@gmail.com>
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/vm.c b/vm.c
index a405cd0a8c..0d423cd979 100644
--- a/vm.c
+++ b/vm.c
@@ -3484,9 +3484,6 @@ Init_VM(void)
rb_define_singleton_method(mjit, "enabled?", mjit_enabled_p, 0);
rb_define_singleton_method(mjit, "pause", mjit_pause_m, -1);
rb_define_singleton_method(mjit, "resume", mjit_resume_m, 0);
- /* RubyVM::JIT for short-term backward compatibility */
- rb_const_set(rb_cRubyVM, rb_intern("JIT"), mjit);
- rb_deprecate_constant(rb_cRubyVM, "JIT");
/*
* Document-class: Thread