]> git.saurik.com Git - apple/javascriptcore.git/blame - tests/stress/ftl-library-inlining-random.js
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git] / tests / stress / ftl-library-inlining-random.js
CommitLineData
ed1e77d3
A
1function foo(x){
2 return Math.random(x);
3}
4
5noInline(foo);
6
7var x = 0;
8
9for (var i = 0 ; i < 100000; i++){
10 x = foo(i);
11}