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 29684 Build 29683: arc lint + arc unit
Event Timeline
llvm/tools/llvm-readobj/ELFDumper.cpp | ||
---|---|---|
650 | 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? | |
672 | I think it's more in keeping with existing style not to bother with the const on non-reference parameters. | |
682 | Nit: missing full stop. | |
688 | Ditto. | |
700 | 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?