Sign in
webkit
/
WebKit
/
6a59c200745aa2ef26b1e56c44297ddf7c28ff78
/
.
/
JSTests
/
microbenchmarks
/
add-tree.js
blob: 63eb446076e0e974e00d442a779656dbfa30a8b4 [
file
] [
log
] [
blame
]
for
(
var
i
=
0
;
i
<
20000000
;
++
i
)
{
var
result
=
i
+
1
;
result
+=
i
+
2
;
result
+=
i
+
3
;
result
+=
i
+
4
;
result
+=
i
+
5
;
result
+=
i
+
6
;
result
+=
i
+
7
;
if
(
result
!=
i
*
7
+
28
)
throw
"Error: bad result at iteration "
+
i
+
" : "
+
result
;
}