blob: 25c0f7762e39ec6843feb2c91cbef660b47c706b [file] [log] [blame]
setJitCompilerOption("ion.warmup.trigger", 4);
var IsObject = getSelfHostedValue("IsObject")
function test(foo) {
if (IsObject(foo)) {
print(foo.test)
}
}
for (var i=0; i<10; i++) {
test(1)
test({})
}