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/builtins/modules Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3466,14 +3466,14 @@ public abstract static class AbstractIdConversionNode extends ArgumentCastNode {
3466
3466
@ Specialization
3467
3467
long doInt (int value ,
3468
3468
@ Bind ("this" ) Node inliningTarget ,
3469
- @ Exclusive @ Cached PRaiseNode .Lazy raiseNode ) {
3469
+ @ Shared @ Cached PRaiseNode .Lazy raiseNode ) {
3470
3470
return checkValue (inliningTarget , value , raiseNode );
3471
3471
}
3472
3472
3473
3473
@ Specialization
3474
3474
long doLong (long value ,
3475
3475
@ Bind ("this" ) Node inliningTarget ,
3476
- @ Exclusive @ Cached PRaiseNode .Lazy raiseNode ) {
3476
+ @ Shared @ Cached PRaiseNode .Lazy raiseNode ) {
3477
3477
return checkValue (inliningTarget , value , raiseNode );
3478
3478
}
3479
3479
You can’t perform that action at this time.
0 commit comments