blob: 1fbc0a74f8b3e943902b368d2617440287da5d1c [file] [log] [blame]
// Try to GC some ion code that involves an IC on x64.
var o = {
bar: function () { return 1; }
}
function f(o) {
for (var i = 0; i < 100; i++)
o.bar();
}
f(o);
// Don't segfault.
gc();