blob: d6a8e93a6f7c92586308e98c5545bb9222fbdc6e [file] [log] [blame] [edit]
function foo() {
var f = function() { return 42 };
f.prototype.f = function() { return 43; };
return f.prototype.f;
}
noInline(foo);
for (var i = 0; i < testLoopCount; ++i)
foo();