New testcase

llvm-svn: 5939
This commit is contained in:
Chris Lattner 2003-04-25 17:59:02 +00:00
parent 6fac66e2cc
commit 25047dd9b9
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
; RUN: as < %s | opt -basicaa -aa-eval -disable-output
; Test for a bug in BasicAA which caused a crash when querying equality of P1&P2
void %test([17 x ushort]* %mask_bits) {
%P1 = getelementptr [17 x ushort]* %mask_bits, long 0, long 0
%P2 = getelementptr [17 x ushort]* %mask_bits, long 252645134, long 0
ret void
}