[VPlan] Convert induction increment check to be VPlan-based.
[llvm-project.git] / llvm / test / Analysis / GlobalsModRef / aliastest.ll
blob2836a7c43559f0b626e9be1765790b170ec40a70
1 ; RUN: opt < %s -aa-pipeline=basic-aa,globals-aa -passes="require<globals-aa>,function(gvn)" -S -enable-unsafe-globalsmodref-alias-results | FileCheck %s
3 ; Note that this test relies on an unsafe feature of GlobalsModRef. While this
4 ; test is correct and safe, GMR's technique for handling this isn't generally.
6 @X = internal global i32 4              ; <ptr> [#uses=1]
8 define i32 @test(ptr %P) {
9 ; CHECK:      @test
10 ; CHECK-NEXT: store i32 7, ptr %P
11 ; CHECK-NEXT: store i32 12, ptr @X
12 ; CHECK-NEXT: ret i32 7
13         store i32 7, ptr %P
14         store i32 12, ptr @X
15         %V = load i32, ptr %P           ; <i32> [#uses=1]
16         ret i32 %V