Sign in
webkit
/
WebKit
/
c3250a6eaba24bc29f880c8d8a153921fb354a10
/
.
/
JSTests
/
microbenchmarks
/
array-push-2.js
blob: cfd8f8a822385462cf2552fc81bfe39bb5e0b087 [
file
] [
log
] [
blame
]
function
arrayPush2
()
{
var
ret
=
[
1
];
ret
.
push
(
1
,
2
);
return
ret
;
}
noInline
(
arrayPush2
);
for
(
var
i
=
0
;
i
<
1e7
;
++
i
)
arrayPush2
();