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