Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / FunctionSpecialization / remove-dead-recursive-function.ll
blob810526532c1060d524fbaeee27302a6cd8bac3e9
1 ; RUN: opt -passes="ipsccp<func-spec>" -funcspec-min-function-size=3 -S < %s | FileCheck %s
3 define i64 @main(i64 %x, i1 %flag) {
4 entry:
5   br i1 %flag, label %plus, label %minus
7 plus:
8   %tmp0 = call i64 @compute(i64 %x, ptr @plus)
9   br label %merge
11 minus:
12   %tmp1 = call i64 @compute(i64 %x, ptr @minus)
13   br label %merge
15 merge:
16   %tmp2 = phi i64 [ %tmp0, %plus ], [ %tmp1, %minus]
17   ret i64 %tmp2
20 ; CHECK-NOT: define internal i64 @compute(
22 ; CHECK-LABEL: define internal i64 @compute.specialized.1(i64 %n, ptr %binop) {
23 ; CHECK:  [[TMP0:%.+]] = call i64 @plus(i64 %n)
24 ; CHECK:  [[TMP1:%.+]] = call i64 @compute.specialized.1(i64 [[TMP2:%.+]], ptr @plus)
25 ; CHECK:  add nsw i64 [[TMP1]], [[TMP0]]
27 ; CHECK-LABEL: define internal i64 @compute.specialized.2(i64 %n, ptr %binop) {
28 ; CHECK:  [[TMP0:%.+]] = call i64 @minus(i64 %n)
29 ; CHECK:  [[TMP1:%.+]] = call i64 @compute.specialized.2(i64 [[TMP2:%.+]], ptr @minus)
30 ; CHECK:  add nsw i64 [[TMP1]], [[TMP0]]
32 define internal i64 @compute(i64 %n, ptr %binop) {
33 entry:
34   %cmp = icmp sgt i64 %n, 0
35   br i1 %cmp, label %if.then, label %if.end
37 if.then:
38   %call = call i64 %binop(i64 %n)
39   %sub = add nsw i64 %n, -1
40   %call1 = call i64 @compute(i64 %sub, ptr %binop)
41   %add2 = add nsw i64 %call1, %call
42   br label %if.end
44 if.end:
45   %result.0 = phi i64 [ %add2, %if.then ], [ 0, %entry ]
46   ret i64 %result.0
49 define internal i64 @plus(i64 %x) {
50 entry:
51   %tmp0 = add i64 %x, 1
52   ret i64 %tmp0
55 define internal i64 @minus(i64 %x) {
56 entry:
57   %tmp0 = sub i64 %x, 1
58   ret i64 %tmp0