blob: 0dd936aaeee09389cacaabb0ec7a99d53286ab6a [file] [log] [blame]
Chris Lattner3fc7b6b2003-03-04 16:33:52 +00001; RUN: as < %s | opt -basicaa -aa-eval -disable-output
2; Test for a bug in BasicAA which caused a crash when querying equality of P1&P2
3void %test({[2 x int],[2 x int]}* %A, long %X, long %Y) {
4 %P1 = getelementptr {[2 x int],[2 x int]}* %A, long 0, ubyte 0, long %X
5 %P2 = getelementptr {[2 x int],[2 x int]}* %A, long 0, ubyte 1, long %Y
6 ret void
7}