[RISCV] emit .option directive for functions with target features which differ from...
[llvm-project.git] / llvm / test / Other / count-visits.ll
blob68bfe497839ffe5dded5f9029f67a8b2fae568cd
1 ; REQUIRES: asserts
2 ; RUN: opt -passes=count-visits -stats 2>&1 -disable-output < %s | FileCheck %s --check-prefix=ONE
3 ; RUN: opt -passes='cgscc(count-visits)' -stats 2>&1 -disable-output < %s | FileCheck %s --check-prefix=ONE
4 ; RUN: opt -passes='cgscc(count-visits,instcombine)' -stats 2>&1 -disable-output < %s | FileCheck %s --check-prefix=TWO
5 ; RUN: opt -passes='default<O1>' -stats 2>&1 -disable-output < %s | FileCheck %s --check-prefix=PIPELINE
6 ; RUN: opt -passes='default<O3>' -stats 2>&1 -disable-output < %s | FileCheck %s --check-prefix=PIPELINE
8 ; ONE: 1 count-visits - Max number of times we visited a function
9 ; TWO: 2 count-visits - Max number of times we visited a function
10 ; PIPELINE: count-visits - Max number of times we visited a function
12 define void @f() {
13   %a = bitcast ptr @g to ptr
14   call void %a()
15   ret void
18 define void @g() {
19   call void @f()
20   ret void