Details
Diff Detail
- Build Status
Buildable 6134 Build 6134: arc lint + arc unit
Event Timeline
include/llvm/ObjectYAML/WasmYAML.h | ||
---|---|---|
130 | The new name section format has subsections, each with a different type of name. So I'm not sure this is the best way to go in that direction, but I'm also not too familiar with yaml/obj either. Do you plan to add local names too? |
include/llvm/ObjectYAML/WasmYAML.h | ||
---|---|---|
130 | Yes, I'm only doing enough to support the name section that the MC layer currently generates which is just Function names. I was planning on improving this later, but can do it sooner if you prefer. Otherwise I will add a TODO to make it clear. |
include/llvm/ObjectYAML/WasmYAML.h | ||
---|---|---|
130 | Oh, I was looking at the lib/Object code and thinking that it supported the extensible names section but I misread it. Yeah this is consistent with what we have now, and we just need to update everything. |
The new name section format has subsections, each with a different type of name. So I'm not sure this is the best way to go in that direction, but I'm also not too familiar with yaml/obj either. Do you plan to add local names too?