blob: 5d4f45f94d79eb1425ff1e05cdb2e79e7ca02ba3 [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function Foo(a, b, c, d, e, f, g)
{
this.f = 42;
}
function bar()
{
return new Foo();
}
noInline(Foo);
noInline(bar);
(function() {
for (var i = 0; i < 10000000; ++i) {
var result = bar();
if (result.f != 42)
throw "Error: bad result: " + result;
}
})();