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