[Instrumentation] Fix a warning
[llvm-project.git] / llvm / test / Transforms / PGOProfile / fix_entry_count.ll
blob6ae02096883f2421f61466aec1badd83a2a23ef3
1 ; RUN: llvm-profdata merge %S/Inputs/fix_entry_count.proftext -o %t.profdata
2 ; RUN: opt < %s -passes=pgo-instr-use -pgo-instrument-entry=true -pgo-test-profile-file=%t.profdata -S | FileCheck %s --check-prefix=USE
4 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "x86_64-unknown-linux-gnu"
7 define i32 @test_simple_for(i32 %n) {
8 ; USE: define i32 @test_simple_for(i32 %n)
9 ; USE-SAME: !prof ![[ENTRY_COUNT:[0-9]*]]
10 entry:
11   br label %for.cond
13 for.cond:
14   %i = phi i32 [ 0, %entry ], [ %inc1, %for.inc ]
15   %sum = phi i32 [ 1, %entry ], [ %inc, %for.inc ]
16   %cmp = icmp slt i32 %i, %n
17   br i1 %cmp, label %for.body, label %for.end
18 ; USE: br i1 %cmp, label %for.body, label %for.end
19 ; USE-SAME: !prof ![[BW_FOR_COND:[0-9]+]]
21 for.body:
22   %inc = add nsw i32 %sum, 1
23   br label %for.inc
25 for.inc:
26   %inc1 = add nsw i32 %i, 1
27   br label %for.cond
29 for.end:
30   ret i32 %sum
32 ; USE: ![[ENTRY_COUNT]] = !{!"function_entry_count", i64 1}
33 ; USE: ![[BW_FOR_COND]] = !{!"branch_weights", i32 96, i32 1}