SimplifyCFG: GEPs with constant indices are cheap enough to be executed unconditionally.
[oota-llvm.git] / test / Transforms / SimplifyCFG / select-gep.ll
1 ; RUN: opt -S -simplifycfg %s | FileCheck %s
2
3 define i8* @test1(i8* %x) nounwind {
4 entry:
5   %tmp1 = load i8* %x, align 1
6   %cmp = icmp eq i8 %tmp1, 47
7   br i1 %cmp, label %if.then, label %if.end
8
9 if.then:
10   %incdec.ptr = getelementptr inbounds i8* %x, i64 1
11   br label %if.end
12
13 if.end:
14   %x.addr = phi i8* [ %incdec.ptr, %if.then ], [ %x, %entry ]
15   ret i8* %x.addr
16
17 ; CHECK: @test1
18 ; CHECK: %x.addr = select i1 %cmp, i8* %incdec.ptr, i8* %x
19 ; CHECK: ret i8* %x.addr
20 }