1 ; RUN: opt -inline -S < %s | FileCheck %s
3 declare void @foo() nounwind
5 define void @bar() nounwind {
7 tail call void @foo() nounwind
11 define void @bazz() nounwind {
13 tail call void @bar() nounwind noinline
17 ; CHECK: define void @bazz()
18 ; CHECK: call void @bar()