test262/implementation-contributed/javascriptcore/stress/fiat-double-to-int52-then-e...

20 lines
356 B
JavaScript

var array = new Float64Array(1);
array[0] = 42;
function foo() {
return fiatInt52(array[0]) + 1;
}
noInline(foo);
for (var i = 0; i < 1000000; ++i) {
var result = foo();
if (result != 43)
throw "Error: bad result: " + result;
}
array[0] = 5.5;
var result = foo();
if (result != 6.5)
throw "Error: bad result at end: " + result;