Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / Inline / noinline.ll
blob936d46f6c034a64b70b507e6835e35552f370411
1 ; RUN: opt -passes=inline -S < %s | FileCheck %s
2 ; PR6682
3 declare void @foo() nounwind
5 define void @bar() nounwind {
6 entry:
7     tail call void @foo() nounwind
8     ret void
11 define void @bazz() nounwind {
12 entry:
13     tail call void @bar() nounwind noinline
14     ret void
17 ; CHECK: define void @bazz()
18 ; CHECK: call void @bar()