blob: d24217b780b13ab7f78b6d52d152f86d55185f54 [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function toStringLeft(num)
{
return num + 'Cocoa';
}
noInline(toStringLeft);
function toStringRight(num)
{
return 'Cocoa' + num;
}
noInline(toStringRight);
for (var i = 0; i < 1e5; ++i) {
toStringLeft(i);
toStringRight(i);
}