]> git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/get-my-argument-by-val-wrap-around-no-warm-up.js
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git] / tests / stress / get-my-argument-by-val-wrap-around-no-warm-up.js
1 function foo(index) {
2 return arguments[index];
3 }
4
5 noInline(foo);
6
7 var result = foo(-1);
8 if (result !== void 0)
9 throw "Error: bad result at end: " + result;