1function foo() {
2    return fiatInt52(Math.fround(42)) + 1;
3}
4
5noInline(foo);
6
7for (var i = 0; i < 1000000; ++i) {
8    var result = foo();
9    if (result != 42 + 1)
10        throw "Error: bad result: " + result;
11}
12