blob: b6e5277929f5df2ad0e0819f8b98f941768b8ce2 [file] [log] [blame]
function foo() {
return fiatInt52(Math.sqrt(2)) + 1;
}
noInline(foo);
for (var i = 0; i < 1000000; ++i) {
var result = foo();
if (result != Math.sqrt(2) + 1)
throw "Error: bad result: " + result;
}