blob: 6f5348ff395add4da9a1bf4c2b542ee13d56c7eb [file] [log] [blame]
Eric Christophercee313d2019-04-17 04:52:47 +00001; RUN: opt -inline -S %s | FileCheck %s
2; RUN: opt -passes='cgscc(inline)' -S %s | FileCheck %s
3
4define void @f() {
5entry:
6 tail call void @g()
7 unreachable
8
9; CHECK-LABEL: @f
10; CHECK-NOT: call
11; CHECK: unreachable
12}
13
14define void @g() {
15entry:
16 unreachable
17}
18