[llvm-objdump] - Remove one overload of reportError. NFCI.
[llvm-complete.git] / test / Analysis / BasicAA / 2009-10-13-GEP-BaseNoAlias.ll
blob43ee96ce9b3de60a7dad2566325964ed9b35d89f
1 ; RUN: opt < %s -basicaa -aa-eval -print-all-alias-modref-info -disable-output 2>&1 | FileCheck %s
2 ; If GEP base doesn't alias Z, then GEP doesn't alias Z.
3 ; rdar://7282591
5 @Y = common global i32 0
6 @Z = common global i32 0
8 ; CHECK: Function: foo
9 ; CHECK:   NoAlias: i32* %P, i32* @Z
11 define void @foo(i32 %cond) nounwind {
12 entry:
13   %a = alloca i32
14   %tmp = icmp ne i32 %cond, 0
15   br i1 %tmp, label %bb, label %bb1
17 bb:
18   %b = getelementptr i32, i32* %a, i32 0
19   br label %bb2
21 bb1:
22   br label %bb2
24 bb2:
25   %P = phi i32* [ %b, %bb ], [ @Y, %bb1 ]
26   %tmp1 = load i32, i32* @Z, align 4
27   store i32 123, i32* %P, align 4
28   %tmp2 = load i32, i32* @Z, align 4
29   br label %return
31 return:
32   ret void