
These tests cases were converted using the script at https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 Differential Revision: https://reviews.llvm.org/D135094
16 lines
293 B
LLVM
16 lines
293 B
LLVM
; RUN: opt < %s -passes=instcombine -S | grep "ret i32 1"
|
|
|
|
declare void @test2()
|
|
|
|
define i32 @test(i1 %cond, ptr %P) {
|
|
%A = alloca i32
|
|
store i32 1, ptr %P
|
|
store i32 1, ptr %A
|
|
|
|
call void @test2() readonly
|
|
|
|
%P2 = select i1 %cond, ptr %P, ptr %A
|
|
%V = load i32, ptr %P2
|
|
ret i32 %V
|
|
}
|