Sign in
webkit
/
WebKit
/
4a12667b4cecb17e84375f8db50c9b2d39b06fe4
/
.
/
JSTests
/
microbenchmarks
/
array-push-2.js
blob: 3e82efd031e0e5f48de72cf9b5317f2a62b48e9a [
file
] [
log
] [
blame
]
//@ skip if $architecture == "x86"
function
arrayPush2
()
{
var
ret
=
[
1
];
ret
.
push
(
1
,
2
);
return
ret
;
}
noInline
(
arrayPush2
);
for
(
var
i
=
0
;
i
<
1e7
;
++
i
)
arrayPush2
();