[test] Update the name of the debug entry values option. NFC
[llvm-core.git] / test / Transforms / InstCombine / load_combine_aa.ll
blobb84b81ddd5d9657f9df5bb7ee41876c10253d1d4
1 ; RUN: opt -basicaa -instcombine -S < %s | FileCheck %s
3 ; CHECK-LABEL: @test_load_combine_aa(
4 ; CHECK: %[[V:.*]] = load i32, i32* %0
5 ; CHECK: store i32 0, i32* %3
6 ; CHECK: store i32 %[[V]], i32* %1
7 ; CHECK: store i32 %[[V]], i32* %2
8 define void @test_load_combine_aa(i32*, i32*, i32*, i32* noalias) {
9   %a = load i32, i32* %0
10   store i32 0, i32* %3
11   %b = load i32, i32* %0
12   store i32 %a, i32* %1
13   store i32 %b, i32* %2
14   ret void