[NFC][RISCV] Remove CFIIndex argument from allocateStack (#117871)
[llvm-project.git] / llvm / test / Transforms / FunctionSpecialization / function-specialization-minsize.ll
blob9127e90ce23e8c915c0e98b6d7a261583ea76008
1 ; RUN: opt -passes="ipsccp<func-spec>" -S < %s | FileCheck %s
3 ; CHECK-NOT: @compute.specialized.1
4 ; CHECK-NOT: @compute.specialized.2
6 define i64 @main(i64 %x, i1 %flag) {
7 entry:
8   br i1 %flag, label %plus, label %minus
10 plus:
11   %tmp0 = call i64 @compute(i64 %x, ptr @plus)
12   br label %merge
14 minus:
15   %tmp1 = call i64 @compute(i64 %x, ptr @minus)
16   br label %merge
18 merge:
19   %tmp2 = phi i64 [ %tmp0, %plus ], [ %tmp1, %minus]
20   ret i64 %tmp2
23 define internal i64 @compute(i64 %x, ptr %binop) minsize {
24 entry:
25   %tmp0 = call i64 %binop(i64 %x)
26   ret i64 %tmp0
29 define internal i64 @plus(i64 %x) {
30 entry:
31   %tmp0 = add i64 %x, 1
32   ret i64 %tmp0
35 define internal i64 @minus(i64 %x) {
36 entry:
37   %tmp0 = sub i64 %x, 1
38   ret i64 %tmp0