Sign in
webkit
/
WebKit
/
068b4c01e91ec356a78d10dc04fb3ed10e825ea3
/
.
/
JSTests
/
slowMicrobenchmarks
/
array-push-3.js
blob: 8c3694db0b915dd3430d81be8b4a29c6861e563f [
file
] [
log
] [
blame
]
function
arrayPush3
()
{
var
ret
=
[
1
];
ret
.
push
(
1
,
2
,
3
);
return
ret
;
}
noInline
(
arrayPush3
);
for
(
var
i
=
0
;
i
<
1e7
;
++
i
)
arrayPush3
();