Don't give up completely, maybe other AA can say something about this.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20873 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-03-27 00:02:33 +00:00
parent e70492d0e2
commit 5f4c0a88ee

View File

@ -138,7 +138,8 @@ AliasAnalysis::AliasResult DSAA::alias(const Value *V1, unsigned V1Size,
DSNode *N1 = I->second.getNode(), *N2 = J->second.getNode();
unsigned O1 = I->second.getOffset(), O2 = J->second.getOffset();
if (N1 == 0 || N2 == 0)
return MayAlias; // Can't tell whether anything aliases null.
// Can't tell whether anything aliases null.
return AliasAnalysis::alias(V1, V1Size, V2, V2Size);
// We can only make a judgment of one of the nodes is complete...
if (N1->isComplete() || N2->isComplete()) {