]> git.saurik.com Git - apple/javascriptcore.git/blame - tests/stress/value-to-int32-undefined-constant.js
JavaScriptCore-7600.1.4.9.tar.gz
[apple/javascriptcore.git] / tests / stress / value-to-int32-undefined-constant.js
CommitLineData
81345200
A
1function foo() {
2 return (void 0) | 0;
3}
4
5noInline(foo);
6
7for (var i = 0; i < 10000; ++i) {
8 var result = foo();
9 if (result != 0)
10 throw "Error: bad result: " + result;
11}
12