Skip to content

Commit 66fdb61

Browse files
committed
Remove unnecessary TruffleBoundary.
1 parent efcc353 commit 66fdb61

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/common/SequenceStorageNodes.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2217,7 +2217,6 @@ private GetItemScalarNode getGetItemNode() {
22172217
return getItemNode;
22182218
}
22192219

2220-
@TruffleBoundary(transferToInterpreterOnException = false)
22212220
private static void repeat(Object dest, Object src, int len, int times) {
22222221
for (int i = 0; i < times; i++) {
22232222
System.arraycopy(src, 0, dest, i * len, len);

0 commit comments

Comments
 (0)