blob: fc17421798efe22c629f8045d682e41b2281f7b7 [file] [log] [blame]
// Skipped due to flakiness, used defaultNoEagerRun before.
//@ skip
const o = { baz: 20 };
function foo(p) {
o[p] = 20;
}
noInline(foo);
noOSRExitFuzzing(foo);
for (let i = 0; i < 1000000; i++) {
foo("baz");
}
if (numberOfDFGCompiles(foo) > 1)
throw new Error("We should not have to compile this function more than once.");