[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Analysis / BasicAA / bug.23540.ll
blob16d01185d9f6b648f4759e01fc2b20ff376307a2
1 ; RUN: opt < %s -aa-pipeline=basic-aa -passes=aa-eval -print-all-alias-modref-info -disable-output 2>&1 | FileCheck %s
2 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
3 target triple = "x86_64-unknown-linux-gnu"
5 @c = external global i32
7 ; CHECK-LABEL: f
8 ; CHECK: MayAlias: i32* %arrayidx, i32* %arrayidx6
9 define void @f() {
10   %idxprom = zext i32 undef to i64
11   %add4 = add i32 0, 1
12   %idxprom5 = zext i32 %add4 to i64
13   %arrayidx6 = getelementptr inbounds i32, i32* @c, i64 %idxprom5
14   %arrayidx = getelementptr inbounds i32, i32* @c, i64 %idxprom
15   load i32, i32* %arrayidx
16   load i32, i32* %arrayidx6
17   ret void