mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 21:49:06 +02:00
RJIT: Initial support of splat
This commit is contained in:
parent
466aa8010f
commit
1dd65f7c55
5 changed files with 157 additions and 9 deletions
|
@ -449,6 +449,10 @@ module RubyVM::RJIT
|
|||
|
||||
def jne(dst)
|
||||
case dst
|
||||
# JNE rel8
|
||||
in Label => dst_label
|
||||
# 75 cb
|
||||
insn(opcode: 0x75, imm: dst_label)
|
||||
# JNE rel32
|
||||
in Integer => dst_addr
|
||||
# 0F 85 cd
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue