[llvm] [ELFObject] Added dbgs() statement in removeSections() (PR #124692)

Vedant Paranjape via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 8 10:26:54 PST 2025


================
@@ -2282,8 +2291,12 @@ Error Object::replaceSections(
 Error Object::removeSymbols(function_ref<bool(const Symbol &)> ToRemove) {
   if (SymbolTable)
     for (const SecPtr &Sec : Sections)
-      if (Error E = Sec->removeSymbols(ToRemove))
+      if (Error E = Sec->removeSymbols(ToRemove)){
+        if (isVerboseEnabled){
----------------
VedantParanjape wrote:

same as before.
```suggestion
        if (isVerboseEnabled) {
```

https://github.com/llvm/llvm-project/pull/124692


More information about the llvm-commits mailing list