Skip to content
Snippets Groups Projects
Commit c3b429aa authored by Lukas Stadler's avatar Lukas Stadler
Browse files

increase threshold in InlineVarArgsPromiseNode

parent 4749b1bd
No related branches found
No related tags found
No related merge requests found
......@@ -528,9 +528,10 @@ public abstract class PromiseNode extends RNode {
}
private int evaluateArguments(VirtualFrame frame, Object[] evaluatedArgs) {
if (evaluatedArgs.length <= 32) {
if (evaluatedArgs.length <= 64) {
return evaluateArgumentsExplode(frame, evaluatedArgs);
}
return evaluateArgumentsLoop(frame, evaluatedArgs);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment