File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/util Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ public abstract static class ReadFromChannelNode extends ReadFromChannelBaseNode
147
147
public abstract ByteSequenceStorage execute (Object channel , int size );
148
148
149
149
@ Specialization
150
- @ TruffleBoundary ( allowInlining = true )
150
+ @ TruffleBoundary
151
151
public static ByteSequenceStorage read (Object channel , int size ,
152
152
@ Cached BranchProfile gotException ,
153
153
@ Cached PRaiseNode raiseNode ) {
@@ -302,7 +302,7 @@ public abstract static class WriteToChannelNode extends WriteToChannelBaseNode {
302
302
public abstract int execute (Object channel , SequenceStorage s , int len );
303
303
304
304
@ Specialization
305
- @ TruffleBoundary ( allowInlining = true )
305
+ @ TruffleBoundary
306
306
int writeOp (Object channel , SequenceStorage s , int len ,
307
307
@ Cached BranchProfile limitProfile ,
308
308
@ Cached ("createBinaryProfile()" ) ConditionProfile maxSizeProfile ,
You can’t perform that action at this time.
0 commit comments