Sign in
webkit
/
WebKit
/
1c7d0e6821998d9f5e927f04218eaa12c2aeca32
/
.
/
JSTests
/
microbenchmarks
/
mul-boolean-double.js
blob: f03c310eefc7db17e4b8fb3d4724331ac9189666 [
file
] [
log
] [
blame
]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
(
function
(
True
)
{
var
x
=
42.5
;
var
n
=
1000000
for
(
var
i
=
0
;
i
<
n
;
++
i
)
x
*=
True
;
if
(
x
!=
42.5
)
throw
"Error: bad result: "
+
x
;
})(
true
);