Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / FunctionSpecialization / function-specialization-minsize2.ll
blob0e2c4836b69309deaea7cd64fdabd65fc50251d7
1 ; RUN: opt -passes="ipsccp<func-spec>" -funcspec-min-function-size=3 -S < %s | FileCheck %s
3 ; Checks for callsites that have been annotated with MinSize. No specialisation
4 ; expected here:
6 ; CHECK-NOT: @compute.specialized.1
7 ; CHECK-NOT: @compute.specialized.2
9 define i64 @main(i64 %x, i1 %flag) {
10 entry:
11   br i1 %flag, label %plus, label %minus
13 plus:
14   %tmp0 = call i64 @compute(i64 %x, ptr @plus) #0
15   br label %merge
17 minus:
18   %tmp1 = call i64 @compute(i64 %x, ptr @minus) #0
19   br label %merge
21 merge:
22   %tmp2 = phi i64 [ %tmp0, %plus ], [ %tmp1, %minus]
23   ret i64 %tmp2
26 define internal i64 @compute(i64 %x, ptr %binop) {
27 entry:
28   %tmp0 = call i64 %binop(i64 %x)
29   ret i64 %tmp0
32 define internal i64 @plus(i64 %x) {
33 entry:
34   %tmp0 = add i64 %x, 1
35   ret i64 %tmp0
38 define internal i64 @minus(i64 %x) {
39 entry:
40   %tmp0 = sub i64 %x, 1
41   ret i64 %tmp0
44 attributes #0 = { minsize optsize }