[ARM] Split large truncating MVE stores
[llvm-complete.git] / test / Reduce / remove-bbs.ll
blob9e49bc531688e32fc860c6f3d0a88edc9442cf04
1 ; Test that llvm-reduce can remove uninteresting Basic Blocks, and remove them from instructions (i.e. SwitchInst, BranchInst and IndirectBrInst)
2 ; Note: if an uninteresting BB is the default case for a switch, the instruction is removed altogether (since the default case cannot be replaced)
4 ; RUN: llvm-reduce --test %python --test-arg %p/Inputs/remove-bbs.py %s -o %t
5 ; RUN: cat %t | FileCheck -implicit-check-not=uninteresting %s
7 define void @main() {
8 interesting:
9   ; CHECK-NOT: switch i32 0, label %uninteresting
10   switch i32 0, label %uninteresting [
11     i32 0, label %uninteresting
12   ]
14 uninteresting:
15   ret void
17 interesting2:
18   ; CHECK: switch i32 1, label %interesting3
19   switch i32 1, label %interesting3 [
20     ; CHECK-NOT: i32 0, label %uninteresting
21     i32 0, label %uninteresting
22     ; CHECK: i32 1, label %interesting3
23     i32 1, label %interesting3
24   ]
26 interesting3:
27   ; CHECK: br label %interesting2
28   br i1 true, label %interesting2, label %uninteresting