utatane.tea@gmail.com | 57ab8ecd | 2017-09-05 03:03:03 +0000 | [diff] [blame] | 1 | function shouldBe(actual, expected) { |
2 | if (actual !== expected) | ||||
3 | throw new Error('bad value: ' + actual); | ||||
4 | } | ||||
5 | |||||
6 | function test() | ||||
7 | { | ||||
8 | var result; | ||||
9 | for (var i = 0; i < 1e2; ++i) { | ||||
10 | i.toString(16); | ||||
11 | i.toString(16); | ||||
12 | i.toString(16); | ||||
13 | i.toString(16); | ||||
14 | result = i.toString(16); | ||||
15 | } | ||||
16 | return result; | ||||
17 | } | ||||
18 | noInline(test); | ||||
19 | |||||
20 | for (var i = 0; i < 1e3; ++i) | ||||
21 | shouldBe(test(), `63`); |