mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 14:05:02 +02:00
6 lines
235 B
Ruby
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
|