]> git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/ftl-arithcos.js
JavaScriptCore-7600.1.4.17.5.tar.gz
[apple/javascriptcore.git] / tests / stress / ftl-arithcos.js
1 function foo(x) {
2 return Math.cos(x);
3 }
4
5 noInline(foo);
6
7 var j = 0;
8 for (var i = 0; i < 100000; ++i)
9 j = foo(i);
10
11 if (-0.5098753724179009 != j){
12 throw "Error"
13 }