diff options
author | Takashi Kokubun <[email protected]> | 2022-12-21 22:46:15 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2022-12-21 22:46:15 -0800 |
commit | bb4cbd0803c3297ad036008adc7a01159ce44e1e (patch) | |
tree | 11286d4b8c1171141b9767c29b7e788b1c3f6f8a /mjit.rb | |
parent | 43f4093a313146d1a5c59f7b234872cdd6950c6c (diff) |
Put RubyVM::MJIT::Compiler under ruby_vm directory (#6989)
[Misc #19250]
Notes
Notes:
Merged-By: k0kubun <[email protected]>
Diffstat (limited to 'mjit.rb')
-rw-r--r-- | mjit.rb | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -20,10 +20,10 @@ if RubyVM::MJIT.enabled? return # miniruby doesn't support MJIT end - RubyVM::MJIT::C = Object.new # forward declaration for mjit/compiler - require "mjit/c_type" - require "mjit/instruction" - require "mjit/compiler" + RubyVM::MJIT::C = Object.new # forward declaration for ruby_vm/mjit/compiler + require 'ruby_vm/mjit/c_type' + require 'ruby_vm/mjit/instruction' + require 'ruby_vm/mjit/compiler' module RubyVM::MJIT private_constant(*constants) |