[PATCH] D78983: [ELF] Add --print-archive-stats=
Fangrui Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 28 01:02:12 PDT 2020
MaskRay marked an inline comment as done.
MaskRay added inline comments.
================
Comment at: lld/ELF/Driver.h:33
+ std::vector<InputFile *> files;
+
----------------
alexshap wrote:
> if this vector is not modified outside of this class then probably it would be good to keep it private and provide a read-only accessor instead.
The code style in lld may be a bit special. In many places public member variables are used in place of public member functions (especially getters and setters)...
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D78983/new/
https://reviews.llvm.org/D78983
More information about the llvm-commits
mailing list