ruby/lib/ruby_vm/mjit/block.rb
2023-03-05 22:11:20 -08:00

6 lines
235 B
Ruby

class RubyVM::MJIT::Block < Struct.new(
:pc, # @param [Integer] Starting PC
:start_addr, # @param [Integer] Starting address of this block's JIT code
:entry_exit, # @param [Integer] Address of entry exit (optional)
)
end