Sign in
webkit
/
WebKit
/
1af45fc1915c308be35b19553899267f3a4f02ea
/
.
/
JSTests
/
microbenchmarks
/
array-push-2.js
blob: 596f504b0997ea45c9055653b3e7300001fc6fe8 [
file
] [
log
] [
blame
]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
//@ 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
();