[llvm] [DWARFYAML] Implement debug_names support (PR #79666)
James Henderson via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 5 01:02:15 PST 2024
================
@@ -118,6 +118,28 @@ struct Unit {
std::vector<Entry> Entries;
};
+struct IdxForm {
+ llvm::dwarf::Index Idx;
----------------
jh7370 wrote:
Nit: here and throughout this file, there's a lot of inconsistency about which namespace qualifiers to use (e.g. in just the `Unit` struct immediately above, the Format member has it, but the Type member doesn't!). It seems to me that all `llvm::` are redundant and should be deleted.
https://github.com/llvm/llvm-project/pull/79666
More information about the llvm-commits
mailing list