Skip to content

Commit

Permalink
Fix bad JIT reference to irSplat.
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed Nov 9, 2014
1 parent b51b479 commit b8a0bac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/ir/targets/JVMVisitor.java
Expand Up @@ -2034,7 +2034,7 @@ public void Self(Self self) {
public void Splat(Splat splat) {
jvmMethod().loadContext();
visit(splat.getArray());
jvmMethod().invokeHelper("irSplat", RubyArray.class, ThreadContext.class, IRubyObject.class);
jvmMethod().invokeIRHelper("irSplat", sig(RubyArray.class, ThreadContext.class, IRubyObject.class));
}

@Override
Expand Down

0 comments on commit b8a0bac

Please sign in to comment.