File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed
linker-private-library/src/main/scala/org/scalajs/linker/runtime Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -1016,15 +1016,9 @@ object RuntimeLong {
1016
1016
1017
1017
if (isInt32(alo, ahi)) {
1018
1018
if (isInt32(blo, bhi)) {
1019
- if (blo != - 1 ) {
1020
- val lo = alo % blo
1021
- hiReturn = lo >> 31
1022
- lo
1023
- } else {
1024
- // Work around https://github.com/ariya/phantomjs/issues/12198
1025
- hiReturn = 0
1026
- 0
1027
- }
1019
+ val lo = alo % blo
1020
+ hiReturn = lo >> 31
1021
+ lo
1028
1022
} else {
1029
1023
// Either a == Int.MinValue && b == (Int.MaxValue + 1), or (abs(b) > abs(a))
1030
1024
if (alo == Int .MinValue && (blo == 0x80000000 && bhi == 0 )) {
Original file line number Diff line number Diff line change @@ -2070,7 +2070,7 @@ object Build {
2070
2070
case `default213Version` =>
2071
2071
if (! useMinifySizes) {
2072
2072
Some (ExpectedSizes (
2073
- fastLink = 443000 to 444000 ,
2073
+ fastLink = 442000 to 443000 ,
2074
2074
fullLink = 90000 to 91000 ,
2075
2075
fastLinkGz = 57000 to 58000 ,
2076
2076
fullLinkGz = 24000 to 25000 ,
You can’t perform that action at this time.
0 commit comments