Skip to content

Commit

Permalink
Restore IR dumping for non-specific-arity method bodies in JIT.
Browse files Browse the repository at this point in the history
  • Loading branch information
headius committed Jan 24, 2017
1 parent cb165f2 commit dffc23c
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 @@ -352,7 +352,7 @@ private void emitWithSignatures(IRMethod method, JVMVisitorMethodContext context
emitScope(method, name, signature, false, true);
context.addNativeSignature(-1, signature.type());
} else {
emitScope(method, name, specificSig, true, false);
emitScope(method, name, specificSig, true, true);
context.addNativeSignature(method.getStaticScope().getSignature().required(), specificSig.type());
emitVarargsMethodWrapper(method, name, METHOD_SIGNATURE_VARARGS, specificSig);
context.addNativeSignature(-1, METHOD_SIGNATURE_VARARGS.type());
Expand Down

0 comments on commit dffc23c

Please sign in to comment.