In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git] / test / Analysis / BasicAA / 2008-12-09-GEP-IndicesAlias.ll
blob967a36edcb3ac950054afda351fff13b9e131f7d
1 ; RUN: llvm-as < %s | opt -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