summaryrefslogtreecommitdiff
path: root/lib/ruby_vm/rjit/entry_stub.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ruby_vm/rjit/entry_stub.rb')
-rw-r--r--lib/ruby_vm/rjit/entry_stub.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/ruby_vm/rjit/entry_stub.rb b/lib/ruby_vm/rjit/entry_stub.rb
new file mode 100644
index 0000000000..9bcef14053
--- /dev/null
+++ b/lib/ruby_vm/rjit/entry_stub.rb
@@ -0,0 +1,7 @@
+module RubyVM::RJIT
+ class EntryStub < Struct.new(
+ :start_addr, # @param [Integer] Stub source start address to be re-generated
+ :end_addr, # @param [Integer] Stub source end address to be re-generated
+ )
+ end
+end