Sign in
webkit
/
WebKit
/
18eafb7225658eb078fb4b435c7e6f4bc55edf7a
/
.
/
JSTests
/
stress
/
dfg-strength-reduction-on-mod-should-handle-INT_MIN.js
blob: 762ef0977ccf65d7a7edc213d2354f92142b95eb [
file
] [
log
] [
blame
]
function
foo
(
num
)
{
num
|=
0
;
let x1
=
num
%
-
2147483648
;
let x2
=
x1
%
5
;
if
(
x2
>
5
)
throw
"Error"
;
}
for
(
let i
=
0
;
i
<
10000
;
i
++)
foo
(
i
);