summaryrefslogtreecommitdiff
path: root/llvm/test/Transforms/InstCombine/select-load-call.ll
blob: aba2c115e190e7b6f942941208c5b70413d4249d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; 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
}