zpu: managed to compile program that writes constant to global variable
[llvm/zpu.git] / test / Transforms / SimplifyCFG / indirectbr.ll
blobde4f5b607551113b1f4a86a0765e20f56d7a1819
1 ; RUN: opt -S -simplifycfg < %s | FileCheck %s
3 ; SimplifyCFG should eliminate redundant indirectbr edges.
5 ; CHECK: indbrtest0
6 ; CHECK: indirectbr i8* %t, [label %BB0, label %BB1, label %BB2]
7 ; CHECK: %x = phi i32 [ 0, %BB0 ], [ 1, %entry ]
9 declare void @foo()
10 declare void @A()
11 declare void @B(i32)
12 declare void @C()
14 define void @indbrtest0(i8** %P, i8** %Q) {
15 entry:
16   store i8* blockaddress(@indbrtest0, %BB0), i8** %P
17   store i8* blockaddress(@indbrtest0, %BB1), i8** %P
18   store i8* blockaddress(@indbrtest0, %BB2), i8** %P
19   call void @foo()
20   %t = load i8** %Q
21   indirectbr i8* %t, [label %BB0, label %BB1, label %BB2, label %BB0, label %BB1, label %BB2]
22 BB0:
23   call void @A()
24   br label %BB1
25 BB1:
26   %x = phi i32 [ 0, %BB0 ], [ 1, %entry ], [ 1, %entry ]
27   call void @B(i32 %x)
28   ret void
29 BB2:
30   call void @C()
31   ret void
34 ; SimplifyCFG should convert the indirectbr into a directbr. It would be even
35 ; better if it removed the branch altogether, but simplifycfdg currently misses
36 ; that because the predecessor is the entry block.
38 ; CHECK: indbrtest1
39 ; CHECK: br label %BB0
41 define void @indbrtest1(i8** %P, i8** %Q) {
42 entry:
43   store i8* blockaddress(@indbrtest1, %BB0), i8** %P
44   call void @foo()
45   %t = load i8** %Q
46   indirectbr i8* %t, [label %BB0, label %BB0]
47 BB0:
48   call void @A()
49   ret void
52 ; SimplifyCFG should notice that BB0 does not have its address taken and
53 ; remove it from entry's successor list.
55 ; CHECK: indbrtest2
56 ; CHECK: entry:
57 ; CHECK-NEXT: unreachable
59 define void @indbrtest2(i8* %t) {
60 entry:
61   indirectbr i8* %t, [label %BB0, label %BB0]
62 BB0:
63   ret void