diff options
author | Itay Bookstein <ibookstein@gmail.com> | 2021-10-06 19:33:10 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2021-10-06 19:33:10 -0700 |
commit | 40ec1c0f16cb23f8b83fb3d28b195e83991defd9 (patch) | |
tree | 93fc4170ffa4d3014a61217cc4871d6ed6844583 /llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | |
parent | 6707a7d7e96ac23ba66f16bdb44927082d2fd4d3 (diff) | |
download | llvm-40ec1c0f16cb23f8b83fb3d28b195e83991defd9.zip llvm-40ec1c0f16cb23f8b83fb3d28b195e83991defd9.tar.gz llvm-40ec1c0f16cb23f8b83fb3d28b195e83991defd9.tar.bz2 |
[IR][NFC] Rename getBaseObject to getAliaseeObject
To better reflect the meaning of the now-disambiguated {GlobalValue,
GlobalAlias}::getBaseObject after breaking off GlobalIFunc::getResolverFunction
(D109792), the function is renamed to getAliaseeObject.
Diffstat (limited to 'llvm/lib/Bitcode/Writer/BitcodeWriter.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp index 37a20d0..93f3361 100644 --- a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp +++ b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp @@ -4039,7 +4039,7 @@ void ModuleBitcodeWriterBase::writePerModuleGlobalValueSummary() { FSModVTableRefsAbbrev); for (const GlobalAlias &A : M.aliases()) { - auto *Aliasee = A.getBaseObject(); + auto *Aliasee = A.getAliaseeObject(); if (!Aliasee->hasName()) // Nameless function don't have an entry in the summary, skip it. continue; |