blob: 8e7194a1963b7792f353152a7f58ecbb0c5f228a [file] [log] [blame]
Hans Wennborg21ce8ec2015-11-10 09:47:48 +00001; RUN: opt -inline -S %s | FileCheck %s
2
3define void @f() {
4entry:
5 tail call void @g()
6 unreachable
7
8; CHECK-LABEL: @f
9; CHECK-NOT: call
10; CHECK: unreachable
11}
12
13define void @g() {
14entry:
15 unreachable
16}
17