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