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

10 lines
157 B
Ruby

module RubyVM::MJIT
class JITState < Struct.new(
:pc, # @param [Integer]
)
def operand(index)
C.VALUE.new(pc)[index + 1]
end
end
end