Sign in
webkit
/
WebKit
/
47b8206e2462d5a862fef65e142ae8764bd9b9e5
/
.
/
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
);