fix an embarassing typo that resulted in llvm-gcc bootstrap miscompare
[llvm/avr.git] / test / Analysis / BasicAA / 2008-12-09-GEP-IndicesAlias.ll
blobaaf9061953e75f1411f171d325f6bd66ad73bb9e
1 ; RUN: opt < %s -aa-eval -print-all-alias-modref-info -disable-output |& grep {MustAlias:.*%R,.*%r}
2 ; Make sure that basicaa thinks R and r are must aliases.
4 define i32 @test(i8 * %P) {
5 entry:
6         %Q = bitcast i8* %P to {i32, i32}*
7         %R = getelementptr {i32, i32}* %Q, i32 0, i32 1
8         %S = load i32* %R
10         %q = bitcast i8* %P to {i32, i32}*
11         %r = getelementptr {i32, i32}* %q, i32 0, i32 1
12         %s = load i32* %r
14         %t = sub i32 %S, %s
15         ret i32 %t