[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:12 PST 2025


================
@@ -825,6 +825,7 @@ class SymbolTableSection : public SectionBase {
 public:
   SymbolTableSection() { Type = OriginalType = ELF::SHT_SYMTAB; }
 
+  bool isVerboseFlag = false;
----------------
jh7370 wrote:

LLVM coding standards say to use `UpperCamelCase` for variables.

Also, the normal style is to put member variables after the methods of a class.

Also, can this be `private`?

Finally, I'd rename this to `VerboseOutput` or similar. The fact that a flag is used to enable it is an implementation detail unrelated to this class itself.

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


More information about the llvm-commits mailing list