]> git.saurik.com Git - apple/javascriptcore.git/blame - 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
CommitLineData
ed1e77d3
A
1function foo(index) {
2 return arguments[index];
3}
4
5noInline(foo);
6
7var result = foo(-1);
8if (result !== void 0)
9 throw "Error: bad result at end: " + result;