blob: 2cece911ac189b2539782c33044ae1ae6691f6c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Test for one annoying case of the EliminateUnreachableCode
// optimization. Here the dominators change and also phis are
// eliminated.
function test1(v) {
var i = 0;
if (v) {
if (v) {
i += 1;
} else {
i += 10;
}
i += 100;
} else {
if (v) {
i += 1000;
} else {
i += 10000;
}
i += 100000;
}
i += 1000000;
return i;
}
function test() {
assertEq(test1(true), 1000101);
assertEq(test1(false), 1110000);
}
for (var i = 0; i < 100; i++)
test();
|