blob: 9d592ff2b2d2d97855b7895c515fdd0eeae917c4 [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function makeRope(str1, str2, str3)
{
return str1 + str2 + str3;
}
noInline(makeRope);
for (var i = 0; i < 1e6; ++i) {
makeRope("Hello", "Another", "World");
makeRope(makeRope("Hello", "Another", "World"), "Another", makeRope("Hello", "Another", "World"));
}