Skip to content

Commit 1a0f46c

Browse files
committed
increase unrolling inline limit
1 parent 9437597 commit 1a0f46c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/interop/PythonMessageResolution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ abstract static class ArgumentsFromForeignNode extends Node {
247247

248248
public abstract Object[] execute(Object[] arguments);
249249

250-
@Specialization(guards = "arguments.length == cachedLen", limit = "1")
250+
@Specialization(guards = {"arguments.length == cachedLen", "cachedLen < 6"}, limit = "3")
251251
@ExplodeLoop
252252
Object[] cached(Object[] arguments,
253253
@Cached("arguments.length") int cachedLen) {

0 commit comments

Comments
 (0)