[llvm] [ELFObject] Added dbgs() statement in removeSections() (PR #124692)
Vedant Paranjape via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 8 10:37:27 PST 2025
================
@@ -766,8 +766,14 @@ Error SymbolTableSection::removeSymbols(
function_ref<bool(const Symbol &)> ToRemove) {
Symbols.erase(
std::remove_if(std::begin(Symbols) + 1, std::end(Symbols),
- [ToRemove](const SymPtr &Sym) { return ToRemove(*Sym); }),
- std::end(Symbols));
+ [ToRemove](const SymPtr &Sym) {
+ if (ToRemove(*Sym)) {
+ llvm::outs() << "Symbols Removed:" << Sym->Name<< "\n";
----------------
VedantParanjape wrote:
This also needs to be guarded by an if (Verbose). You can add the isVerboseFlag to SymbolTableSection as well and set it through `Obj.SymbolTable->isVerboseFlag = ...`
https://github.com/llvm/llvm-project/pull/124692
More information about the llvm-commits
mailing list