You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/compiler/bytecode_dsl/RootNodeCompiler.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1454,7 +1454,7 @@ public void setUpFrame(ArgumentsTy args, Builder b) {
1454
1454
b.beginStoreRange(cellVariableLocals);
1455
1455
b.beginCollectToObjectArray();
1456
1456
for (inti = 0; i < cellVariableLocals.length; i++) {
1457
-
b.beginCreateCell();
1457
+
b.beginCreateCell(i);
1458
1458
if (scope.getUseOfName(cellVariables[i]).contains(DefUse.DefParam)) {
1459
1459
/*
1460
1460
* To simplify the argument copying performed above, we copy cell params into
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/bytecode_dsl/PBytecodeDSLRootNode.java
0 commit comments