blob: 28b5852606758b9ede19dd9ba878e186e3c2fe1e [file] [log] [blame]
Chris Lattner9d5adb02002-05-07 21:05:36 +00001; This is the test case taken from Appel's book that illustrates a hard case
2; that SCCP gets right, and when followed by ADCE, is completely eliminated
3;
Misha Brukmane78760e2003-09-16 15:29:54 +00004; RUN: llvm-as < %s | opt -sccp -adce -simplifycfg | llvm-dis | not grep br
Chris Lattner9d5adb02002-05-07 21:05:36 +00005
6int "test function"(int %i0, int %j0) {
7BB1:
8 br label %BB2
9BB2:
10 %j2 = phi int [%j4, %BB7], [1, %BB1]
11 %k2 = phi int [%k4, %BB7], [0, %BB1]
12 %kcond = setlt int %k2, 100
13 br bool %kcond, label %BB3, label %BB4
14
15BB3:
16 %jcond = setlt int %j2, 20
17 br bool %jcond, label %BB5, label %BB6
18
19BB4:
20 ret int %j2
21
22BB5:
23 %k3 = add int %k2, 1
24 br label %BB7
25
26BB6:
27 %k5 = add int %k2, 1
28 br label %BB7
29
30BB7:
31 %j4 = phi int [1, %BB5], [%k2, %BB6]
32 %k4 = phi int [%k3, %BB5], [%k5, %BB6]
33 br label %BB2
34}