blob: 8db2fedfb29a81aa9a10e11b488007a74c50278e [file] [log] [blame]
// |jit-test| ion-eager
function ionCompiledEagerly() {
Math.random; // establish Math.random's identity for inlining
return function() {
return +Math.random(); // call will be inlined
};
}
var alreadyIonCompiled = ionCompiledEagerly();
assertEq(alreadyIonCompiled() < 1, true);