When implementing GNU style dumper for .gnu.version section, we should find symbol version name by vs_index.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
- Build Status
Buildable 29743 Build 29742: arc lint + arc unit
Event Timeline
llvm/tools/llvm-readobj/ELFDumper.cpp | ||
---|---|---|
649 | You don't need to do this now, but could you in a separate patch please replace dot_gnu_version_sec and similar with LLVM-style names? | |
671 | I think it's more in keeping with existing style not to bother with the const on non-reference parameters. | |
681 | Nit: missing full stop. | |
687 | Ditto. | |
699 | Is std::string the right type to be returning here? This is a pointer into an existing block of strings, so I'd think a StringRef would be sufficient. |
You don't need to do this now, but could you in a separate patch please replace dot_gnu_version_sec and similar with LLVM-style names?