Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / Inline / mut-rec-scc-2.ll
blobdf7a6aa5fc71cda9c35a840ca86cddfb3db9eb48
1 ; RUN: opt -S -passes='inline' < %s | FileCheck %s
3 ; Make sure we don't mark calls within the same SCC as original function with noinline.
4 ; CHECK-NOT: function-inline-cost-multiplier
6 define void @samescc1() {
7   call void @samescc2()
8   ret void
11 define void @samescc2() {
12   call void @samescc3()
13   ret void
16 define void @samescc3() {
17   call void @samescc1()
18   ret void