[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / X86 / unreachableblockelim.ll
blobadaedb5e8d780f20b31e574e486c187547ab25f8
1 ; RUN: opt -S < %s -unreachableblockelim | FileCheck %s
2 ; RUN: opt -S < %s -passes=unreachableblockelim | FileCheck %s
4 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "x86_64-unknown-linux-gnu"
7 declare void @abort()
9 ; CHECK-LABEL: @foo(
10 ; CHECK-NOT: return:
11 define void @foo(i32* %p) {
12 entry:
13   %p.addr = alloca i32*, align 8
14   call void @abort()
15   unreachable
17 return:                                           ; No predecessors!
18   store i32* %p, i32** %p.addr, align 8
19   ret void