[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / X86 / unreachableblockelim.ll
blob4aafa21f4ea5e0a7a7c7fb29c60a056ca5be748e
1 ; RUN: opt -S < %s -unreachableblockelim | FileCheck %s
3 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
4 target triple = "x86_64-unknown-linux-gnu"
6 declare void @abort()
8 ; CHECK-LABEL: @foo(
9 ; CHECK-NOT: return:
10 define void @foo(i32* %p) {
11 entry:
12   %p.addr = alloca i32*, align 8
13   call void @abort()
14   unreachable
16 return:                                           ; No predecessors!
17   store i32* %p, i32** %p.addr, align 8
18   ret void