summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/InstCombine/load_combine_aa.ll
blob: b84b81ddd5d9657f9df5bb7ee41876c10253d1d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: opt -basicaa -instcombine -S < %s | FileCheck %s

; CHECK-LABEL: @test_load_combine_aa(
; CHECK: %[[V:.*]] = load i32, i32* %0
; CHECK: store i32 0, i32* %3
; CHECK: store i32 %[[V]], i32* %1
; CHECK: store i32 %[[V]], i32* %2
define void @test_load_combine_aa(i32*, i32*, i32*, i32* noalias) {
  %a = load i32, i32* %0
  store i32 0, i32* %3
  %b = load i32, i32* %0
  store i32 %a, i32* %1
  store i32 %b, i32* %2
  ret void
}
OpenPOWER on IntegriCloud