blob: 8902414bd833bdf79a81dae8d99c4e678d7b588c [file] [log] [blame]
"use strict";
function assert(b) {
if (!b)
throw new Error;
}
function assertWrapper(a, b, c) {
return assert.apply(null, arguments);
}
noInline(assertWrapper);
noFTL(assertWrapper);
let start = Date.now();
for (let i = 0; i < 1000000; ++i) {
assertWrapper(true, true, true);
}
if (false)
print(Date.now() - start);