]> git.saurik.com Git - apple/javascriptcore.git/blame - tests/stress/fiat-value-to-int52-then-fold.js
JavaScriptCore-7600.1.4.9.tar.gz
[apple/javascriptcore.git] / tests / stress / fiat-value-to-int52-then-fold.js
CommitLineData
81345200
A
1function foo() {
2 return fiatInt52(DFGTrue() ? 42 : 5.5) + 1;
3}
4
5noInline(foo);
6
7for (var i = 0; i < 1000000; ++i) {
8 var result = foo();
9 if (result != 43 && result != 6.5)
10 throw "Error: bad result: " + result;
11}