Sign in
webkit
/
WebKit
/
c3250a6eaba24bc29f880c8d8a153921fb354a10
/
.
/
JSTests
/
microbenchmarks
/
array-push-1.js
blob: 5e6d9e6ba7946fc8ecd4bfe2e277bb06b75c2805 [
file
] [
log
] [
blame
]
utatane.tea@gmail.com
9078287
2017-09-30 01:16:52 +0000
[
diff
] [
blame
]
1
function
arrayPush1
()
{
2
var
ret
=
[
1
];
3
ret
.
push
(
1
);
4
return
ret
;
5
}
6
noInline
(
arrayPush1
);
7
8
for
(
var
i
=
0
;
i
<
1e7
;
++
i
)
9
arrayPush1
();