Skip to content

Commit 878841e

Browse files
committed
TruffleBoundary is not needed anymore for CExtNodes.
1 parent c9ebebf commit 878841e

File tree

1 file changed

+0
-2
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/object

1 file changed

+0
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/object/ObjectBuiltins.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,6 @@ public int hash(Object self) {
186186
@GenerateNodeFactory
187187
public abstract static class EqNode extends PythonBinaryBuiltinNode {
188188
@Specialization
189-
@TruffleBoundary
190189
public boolean eq(PythonNativeObject self, PythonNativeObject other,
191190
@Cached("create()") CExtNodes.IsNode nativeIsNode) {
192191
return nativeIsNode.execute(self, other);
@@ -206,7 +205,6 @@ public abstract static class NeNode extends PythonBinaryBuiltinNode {
206205
@Child private CastToBooleanNode ifFalseNode;
207206

208207
@Specialization
209-
@TruffleBoundary
210208
public boolean ne(PythonNativeObject self, PythonNativeObject other,
211209
@Cached("create()") CExtNodes.IsNode nativeIsNode) {
212210
return !nativeIsNode.execute(self, other);

0 commit comments

Comments
 (0)