diff options
author | Vitaly Buka <vitalybuka@google.com> | 2020-07-30 21:07:10 -0700 |
---|---|---|
committer | Vitaly Buka <vitalybuka@google.com> | 2020-07-30 21:08:24 -0700 |
commit | 89051ebacea72733ff7088cf09a760b1be707acf (patch) | |
tree | d6c3c02920f3314f5686c3f715c37dec1fe16fe1 /llvm/lib/Analysis/DependenceAnalysis.cpp | |
parent | 9f0225894254c4706519c85d6fc06c5382903fef (diff) | |
download | llvm-89051ebacea72733ff7088cf09a760b1be707acf.zip llvm-89051ebacea72733ff7088cf09a760b1be707acf.tar.gz llvm-89051ebacea72733ff7088cf09a760b1be707acf.tar.bz2 |
[NFC] GetUnderlyingObject -> getUnderlyingObject
I am going to touch them in the next patch anyway
Diffstat (limited to 'llvm/lib/Analysis/DependenceAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/DependenceAnalysis.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DependenceAnalysis.cpp b/llvm/lib/Analysis/DependenceAnalysis.cpp index bcfeef7fb..3a67b45 100644 --- a/llvm/lib/Analysis/DependenceAnalysis.cpp +++ b/llvm/lib/Analysis/DependenceAnalysis.cpp @@ -659,8 +659,8 @@ static AliasResult underlyingObjectsAlias(AAResults *AA, return NoAlias; // Check the underlying objects are the same - const Value *AObj = GetUnderlyingObject(LocA.Ptr, DL); - const Value *BObj = GetUnderlyingObject(LocB.Ptr, DL); + const Value *AObj = getUnderlyingObject(LocA.Ptr, DL); + const Value *BObj = getUnderlyingObject(LocB.Ptr, DL); // If the underlying objects are the same, they must alias if (AObj == BObj) |