1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/Transforms/InstCombine/select-load-call.ll
Dan Gohman 8d84372836 Change these tests to feed the assembly files to opt directly, instead
of using llvm-as, now that opt supports this.

llvm-svn: 81226
2009-09-08 16:50:01 +00:00

16 lines
293 B
LLVM

; RUN: opt %s -instcombine | llvm-dis | grep {ret i32 1}
declare void @test2()
define i32 @test(i1 %cond, i32 *%P) {
%A = alloca i32
store i32 1, i32* %P
store i32 1, i32* %A
call void @test2() readonly
%P2 = select i1 %cond, i32 *%P, i32* %A
%V = load i32* %P2
ret i32 %V
}