Sign in
webkit
/
WebKit
/
36b74c3900290f2598b1d40cf6065a7028fc4a34
/
.
/
JSTests
/
microbenchmarks
/
array-push-1.js
blob: 5e6d9e6ba7946fc8ecd4bfe2e277bb06b75c2805 [
file
] [
log
] [
blame
]
function
arrayPush1
()
{
var
ret
=
[
1
];
ret
.
push
(
1
);
return
ret
;
}
noInline
(
arrayPush1
);
for
(
var
i
=
0
;
i
<
1e7
;
++
i
)
arrayPush1
();