mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-26 14:25:18 +00:00
be73ba8c82
Differential Revision: http://reviews.llvm.org/D14499 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252595 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
207 B
LLVM
18 lines
207 B
LLVM
; RUN: opt -inline -S %s | FileCheck %s
|
|
|
|
define void @f() {
|
|
entry:
|
|
tail call void @g()
|
|
unreachable
|
|
|
|
; CHECK-LABEL: @f
|
|
; CHECK-NOT: call
|
|
; CHECK: unreachable
|
|
}
|
|
|
|
define void @g() {
|
|
entry:
|
|
unreachable
|
|
}
|
|
|