aboutsummaryrefslogtreecommitdiffstats
path: root/test/Analysis/BasicAA/2003-03-04-GEPCrash.ll
blob: 5a93b3da054e47ef359b2bbd9a6f04481f9b6c0b (plain)
1
2
3
4
5
6
7
; RUN: opt < %s -basicaa -aa-eval -disable-output 2>/dev/null
; Test for a bug in BasicAA which caused a crash when querying equality of P1&P2
define void @test({[2 x i32],[2 x i32]}* %A, i64 %X, i64 %Y) {
	%P1 = getelementptr {[2 x i32],[2 x i32]}, {[2 x i32],[2 x i32]}* %A, i64 0, i32 0, i64 %X
	%P2 = getelementptr {[2 x i32],[2 x i32]}, {[2 x i32],[2 x i32]}* %A, i64 0, i32 1, i64 %Y
	ret void
}