[RISCV] Rename a lambda to have plural nouns to reflect that it contains a loop. NFC
[llvm-project.git] / llvm / test / Transforms / PGOProfile / infinite_loop_gen.ll
blob86da694129e9e80a24f90a59b233cc8166483b27
1 ; RUN: opt < %s -passes=pgo-instr-gen -S | FileCheck %s
3 define void @foo() {
4 entry:
5   br label %while.body
6   ; CHECK: llvm.instrprof.increment
8     while.body:                                       ; preds = %entry, %while.body
9     ; CHECK: llvm.instrprof.increment
10         call void (...) @bar() #2
11     br label %while.body
14 declare void @bar(...)
16 attributes #0 = { nounwind }