Skip to content

Commit b8a0bac

Browse files
committed
Fix bad JIT reference to irSplat.
1 parent b51b479 commit b8a0bac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/jruby/ir/targets/JVMVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2034,7 +2034,7 @@ public void Self(Self self) {
20342034
public void Splat(Splat splat) {
20352035
jvmMethod().loadContext();
20362036
visit(splat.getArray());
2037-
jvmMethod().invokeHelper("irSplat", RubyArray.class, ThreadContext.class, IRubyObject.class);
2037+
jvmMethod().invokeIRHelper("irSplat", sig(RubyArray.class, ThreadContext.class, IRubyObject.class));
20382038
}
20392039

20402040
@Override

0 commit comments

Comments
 (0)