aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/DependenceAnalysis.cpp
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2020-07-30 21:07:10 -0700
committerVitaly Buka <vitalybuka@google.com>2020-07-30 21:08:24 -0700
commit89051ebacea72733ff7088cf09a760b1be707acf (patch)
treed6c3c02920f3314f5686c3f715c37dec1fe16fe1 /llvm/lib/Analysis/DependenceAnalysis.cpp
parent9f0225894254c4706519c85d6fc06c5382903fef (diff)
downloadllvm-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.cpp4
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)