blob: fd918f869eb916fd69b5b55b40e406ec45f34312 [file] [log] [blame]
//@ runNoCJIT("--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) { }