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

James Henderson via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 19 02:57:10 PST 2025


================
@@ -2230,6 +2237,9 @@ Error Object::removeSections(
   for (auto &RemoveSec : make_range(Iter, std::end(Sections))) {
     for (auto &Segment : Segments)
       Segment->removeSection(RemoveSec.get());
+    if (isVerboseEnabled) {
+      llvm::outs() << "Removed Section: " << (RemoveSec.get()->Name);
+    }
----------------
jh7370 wrote:

LLVM style doesn't use braces around single-line ifs, typically.
```suggestion
    if (isVerboseEnabled)
      llvm::outs() << "Removed Section: " << (RemoveSec.get()->Name);
```
Also, the GNU output uses lower case for its verbose output when printing which files are copied, so it makes sense to print it more like "removed section".

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


More information about the llvm-commits mailing list