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/Transforms/Utils/InlineFunction.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/Transforms/Utils/InlineFunction.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/InlineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/InlineFunction.cpp b/llvm/lib/Transforms/Utils/InlineFunction.cpp index 5c9cb12..090ba9d 100644 --- a/llvm/lib/Transforms/Utils/InlineFunction.cpp +++ b/llvm/lib/Transforms/Utils/InlineFunction.cpp @@ -1037,7 +1037,7 @@ static void AddAliasScopeMetadata(CallBase &CB, ValueToValueMapTy &VMap, SmallSetVector<const Argument *, 4> NAPtrArgs; for (const Value *V : PtrArgs) { SmallVector<const Value *, 4> Objects; - GetUnderlyingObjects(V, Objects, DL, /* LI = */ nullptr); + getUnderlyingObjects(V, Objects, DL, /* LI = */ nullptr); for (const Value *O : Objects) ObjSet.insert(O); |