Skip to content

Commit ff74007

Browse files
committed
fix Truffle deprecation
1 parent 7492c04 commit ff74007

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/builtins/objects/common/SequenceStorageNodes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ public Object execute(Object arg0, Object arg1) {
729729
private Node getCallNode() {
730730
if (callNode == null) {
731731
CompilerDirectives.transferToInterpreterAndInvalidate();
732-
callNode = insert(Message.createExecute(2).createNode());
732+
callNode = insert(Message.EXECUTE.createNode());
733733
}
734734
return callNode;
735735
}

0 commit comments

Comments
 (0)