blob: 1ceb861e943ecf72777da5bdff8a5d8b592d1aee [file] [log] [blame]
zhifei_fang@apple.com73166802019-10-22 22:46:40 +00001//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
utatane.tea@gmail.com90782872017-09-30 01:16:52 +00002function arrayPush0() {
3 var ret = [1];
4 ret.push();
5 return ret;
6}
7noInline(arrayPush0);
8
9for (var i = 0; i < 1e7; ++i)
10 arrayPush0();