Add PR check to suggest alternatives to using undef (#118506)
[llvm-project.git] / llvm / test / Transforms / FunctionSpecialization / function-specialization-stats.ll
blobc1ca3eb3ae299369f21247d5949ff445db9ece1e
1 ; REQUIRES: asserts
2 ; RUN: opt -stats -passes="ipsccp<func-spec>" -S -force-specialization < %s 2>&1 | FileCheck %s
4 ; CHECK: 2 function-specialization - Number of specializations created
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) {
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