File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/ints Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -329,7 +329,7 @@ public int intValueExact() {
329
329
return intValueExact (value );
330
330
}
331
331
332
- @ TruffleBoundary ( transferToInterpreterOnException = false )
332
+ @ TruffleBoundary
333
333
private static int intValueExact (BigInteger value ) {
334
334
return value .intValueExact ();
335
335
}
@@ -347,7 +347,7 @@ public long longValueExact() {
347
347
return longValueExact (value );
348
348
}
349
349
350
- @ TruffleBoundary ( transferToInterpreterOnException = false )
350
+ @ TruffleBoundary
351
351
static long longValueExact (BigInteger value ) {
352
352
return value .longValueExact ();
353
353
}
@@ -447,7 +447,7 @@ public byte byteValueExact() {
447
447
return byteValueExact (value );
448
448
}
449
449
450
- @ TruffleBoundary ( transferToInterpreterOnException = false )
450
+ @ TruffleBoundary
451
451
private static byte byteValueExact (BigInteger value ) {
452
452
return value .byteValueExact ();
453
453
}
You can’t perform that action at this time.
0 commit comments