[Lldb-commits] [PATCH] D143958: [NFC][IR] Make Module::getAliasList() private
Arthur Eubanks via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 13 16:05:39 PST 2023
aeubanks added inline comments.
Herald added subscribers: Michael137, JDevlieghere.
================
Comment at: llvm/include/llvm/IR/Module.h:573
+ /// Inserts \p Alias into the alias list before \p Where and takes ownership.
+ void insertAlias(AliasListType::iterator Where, GlobalAlias *Alias) {
+ AliasList.insert(Where, Alias);
----------------
this isn't used outside tests, remove?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D143958/new/
https://reviews.llvm.org/D143958
More information about the lldb-commits
mailing list