brintos

brintos / llvm-project-archived public Read only

0
0
Text · 329 B · 936d46f Raw
19 lines · plain
1; RUN: opt -passes=inline -S < %s | FileCheck %s2; PR66823declare void @foo() nounwind4 5define void @bar() nounwind {6entry:7    tail call void @foo() nounwind8    ret void9}10 11define void @bazz() nounwind {12entry:13    tail call void @bar() nounwind noinline14    ret void15}16 17; CHECK: define void @bazz()18; CHECK: call void @bar()19