Fix Bug: BasicAA/2003-05-21-GEP-Problem.ll

llvm-svn: 6270
This commit is contained in:
Chris Lattner 2003-05-21 20:23:26 +00:00
parent 1e92c6803b
commit 777fdfc135

View File

@ -290,7 +290,7 @@ BasicAliasAnalysis::CheckGEPInstructions(GetElementPtrInst *GEP1, unsigned G1S,
if (isa<Constant>(Op2))
Indices2.push_back((Value*)Op2);
else // Conservatively assume the minimum value for this index
Indices2.push_back(Constant::getNullValue(Op1->getType()));
Indices2.push_back(Constant::getNullValue(Op2->getType()));
}
}