Skip to content

Commit 03ee5ce

Browse files
committed
fix merge
1 parent c681fd6 commit 03ee5ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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
@@ -508,7 +508,7 @@ private Object getLongItem(PDict nativeMembers, String key) {
508508

509509
// roughly equivalent to _Py_CheckFunctionResult in Objects/call.c
510510
@ImportStatic(PGuards.class)
511-
abstract static class CheckFunctionResultNode extends PBaseNode {
511+
abstract static class CheckFunctionResultNode extends PNodeWithContext {
512512

513513
@Child private Node isNullNode;
514514

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/PythonObjectNativeWrapperMR.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -978,7 +978,7 @@ public static PAsPointerNode create() {
978978
}
979979
}
980980

981-
abstract static class PToNativeNode extends PBaseNode {
981+
abstract static class PToNativeNode extends PNodeWithContext {
982982
@Child private ToPyObjectNode toPyObjectNode;
983983
@Child private MaterializeDelegateNode materializeNode;
984984
@Child private PIsPointerNode pIsPointerNode = PIsPointerNode.create();

0 commit comments

Comments
 (0)