blob: 46946a57804a582f56e4751391576f6f5e6c9533 [file] [log] [blame]
//@ runDefault("--useConcurrentJIT=0", "--validateFTLOSRExitLiveness=1")
function foo(o, p) {
p = null;
try {
o.f = null;
p = null;
} catch (e) {
}
}
noInline(foo);
for (var i = 0; i < 1000000; ++i) {
foo({});
}