fpizlo@apple.com | 09b14f9 | 2015-05-13 05:21:16 +0000 | [diff] [blame] | 1 | function foo() { |
2 | return isInt32(arguments); | ||||
3 | } | ||||
4 | |||||
5 | noInline(foo); | ||||
6 | |||||
7 | for (var i = 0; i < 10000; ++i) { | ||||
8 | var result = foo(); | ||||
9 | if (result !== false) | ||||
10 | throw "Error: bad result: " + result; | ||||
11 | } | ||||
12 |