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