forked from OSchip/llvm-project
[[DAGCombiner][NFC] Add a comment.
As suggested in D61846. llvm-svn: 360755
This commit is contained in:
parent
041f40e5da
commit
d9d0665d1c
|
@ -19830,6 +19830,8 @@ bool DAGCombiner::isAlias(SDNode *Op0, SDNode *Op1) const {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Try to prove that there is aliasing, or that there is no aliasing. Either
|
||||||
|
// way, we can return now. If nothing can be proved, proceed with more tests.
|
||||||
bool IsAlias;
|
bool IsAlias;
|
||||||
if (BaseIndexOffset::computeAliasing(Op0, MUC0.NumBytes, Op1, MUC1.NumBytes,
|
if (BaseIndexOffset::computeAliasing(Op0, MUC0.NumBytes, Op1, MUC1.NumBytes,
|
||||||
DAG, IsAlias))
|
DAG, IsAlias))
|
||||||
|
|
Loading…
Reference in New Issue