Skip to content

Commit 91534fa

Browse files
committed
add missing Node.insert in TruffleCextBuiltins
1 parent 5c7920a commit 91534fa

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/modules/TruffleCextBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ private void checkFunctionResult(String name, boolean isNull) {
593593
private boolean isNull(TruffleObject result) {
594594
if (isNullNode == null) {
595595
CompilerDirectives.transferToInterpreterAndInvalidate();
596-
isNullNode = Message.IS_NULL.createNode();
596+
isNullNode = insert(Message.IS_NULL.createNode());
597597
}
598598
return ForeignAccess.sendIsNull(isNullNode, result);
599599
}

0 commit comments

Comments
 (0)