blob: d65c148d2cb3c51087791c3c6d75dab08c4a1e2f [file] [log] [blame]
//@ skip if $architecture == "x86"
function arrayPush3() {
var ret = [1];
ret.push(1, 2, 3);
return ret;
}
noInline(arrayPush3);
for (var i = 0; i < 1e7; ++i)
arrayPush3();