linux-packaging-mono/external/llvm/test/CodeGen/X86/unreachableblockelim.ll
Xamarin Public Jenkins (auto-signing) e19d552987 Imported Upstream version 5.18.0.161
Former-commit-id: 4db48158d3a35497b8f118ab21b5f08ac3d86d98
2018-10-19 08:34:24 +00:00

22 lines
516 B
LLVM

; RUN: opt -S < %s -unreachableblockelim | FileCheck %s
; RUN: opt -S < %s -passes=unreachableblockelim | FileCheck %s
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
declare void @abort()
; CHECK-LABEL: @foo(
; CHECK-NOT: return:
define void @foo(i32* %p) {
entry:
%p.addr = alloca i32*, align 8
call void @abort()
unreachable
return: ; No predecessors!
store i32* %p, i32** %p.addr, align 8
ret void
}