brintos

brintos / llvm-project-archived public Read only

0
0
Text · 270 B · 7e2d33d Raw
19 lines · plain
1; RUN: opt -passes=inline -S %s | FileCheck %s2; RUN: opt -passes='cgscc(inline)' -S %s | FileCheck %s3 4define void @f() {5entry:6  tail call void @g()7  unreachable8 9; CHECK-LABEL: @f10; CHECK-NOT: call11; CHECK: unreachable12}13 14define void @g() {15entry:16  unreachable17}18 19