]> git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/ftl-arithsin.js
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git] / tests / stress / ftl-arithsin.js
1 function foo(x) {
2 return Math.sin(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.860248280789742 != j){
12 throw "Error"
13 }