[PATCH] D103072: [llvm-readobj] Optimize printing stack sizes to linear time.
James Henderson via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 26 00:34:39 PDT 2021
jhenderson accepted this revision.
jhenderson added a comment.
This revision is now accepted and ready to land.
LGTM, with nit.
================
Comment at: llvm/tools/llvm-readobj/ELFDumper.cpp:5723
+ for (const Elf_Sym &Sym : *SymsOrError) {
+ (void)Sym;
+ ++Index;
----------------
You can delete this line now.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103072/new/
https://reviews.llvm.org/D103072
More information about the llvm-commits
mailing list