blob: ec3b707c649c35123f6a1329d1fd4727f98a0259 [file] [log] [blame] [edit]
function test(str) {
return str.replace('h', "abc");
}
noInline(test);
let str = (-1).toLocaleString().padEnd(315241, "hello ");
for (let i = 0; i < 1e2; i++) {
test(str);
}