[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Transforms / StripSymbols / block-address.ll
blob113d4d94fa40bc8e7e35d23c2a15e9eba44b3ef3
1 ; RUN: opt -strip -S < %s | FileCheck %s
2 ; PR10286
4 @main_addrs = constant [2 x i8*] [i8* blockaddress(@f, %FOO), i8* blockaddress(@f, %BAR)]
5 ; CHECK: @main_addrs = constant [2 x i8*] [i8* blockaddress(@f, %2), i8* blockaddress(@f, %3)]
7 declare void @foo() nounwind
8 declare void @bar() nounwind
10 define void @f(i8* %indirect.goto.dest) nounwind uwtable ssp {
11 entry:
12   indirectbr i8* %indirect.goto.dest, [label %FOO, label %BAR]
14   ; CHECK: indirectbr i8* %0, [label %2, label %3]
16 FOO:
17   call void @foo()
18   ret void
20 BAR:
21   call void @bar()
22   ret void