blob: c1717e84357a12acc41591e0b7193cbb99ca032c [file] [log] [blame]
//@ runMiscNoCJITTest("--forceDebuggerBytecodeGeneration=true", "--alwaysUseShadowChicken=true")
"use strict";
function foo(b) {
if (b)
throw "foo";
return b;
}
noInline(foo);
for (let i = 0; i < 10000; i++)
foo(false);
try {
foo(true);
} catch(e) { }