Fix the alias analysis query in DAGCombiner to not add in two

offsets. The SrcValueOffset values are the real offsets from the
SrcValue base pointers.

llvm-svn: 40534
This commit is contained in:
Dan Gohman 2007-07-26 16:14:06 +00:00
parent 6e853bc73f
commit 30f060be80
1 changed files with 2 additions and 2 deletions

View File

@ -4599,8 +4599,8 @@ bool DAGCombiner::isAlias(SDOperand Ptr1, int64_t Size1,
if (CombinerGlobalAA) {
// Use alias analysis information.
int Overlap1 = Size1 + SrcValueOffset1 + Offset1;
int Overlap2 = Size2 + SrcValueOffset2 + Offset2;
int Overlap1 = Size1 + SrcValueOffset1;
int Overlap2 = Size2 + SrcValueOffset2;
AliasAnalysis::AliasResult AAResult =
AA.alias(SrcValue1, Overlap1, SrcValue2, Overlap2);
if (AAResult == AliasAnalysis::NoAlias)