diff options
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/obj2yaml/macho2yaml.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/obj2yaml/macho2yaml.cpp b/llvm/tools/obj2yaml/macho2yaml.cpp index 16f25fc4668..cc82bbb717a 100644 --- a/llvm/tools/obj2yaml/macho2yaml.cpp +++ b/llvm/tools/obj2yaml/macho2yaml.cpp @@ -488,13 +488,13 @@ void MachODumper::dumpDebugAbbrev(DWARFContextInMemory &DCtx, if(AbbrevSetPtr) { for(auto AbbrvDeclSet : *AbbrevSetPtr) { for(auto AbbrvDecl : AbbrvDeclSet.second) { - MachOYAML::DWARFAbbrev Abbrv; + DWARFYAML::DWARFAbbrev Abbrv; Abbrv.Code = AbbrvDecl.getCode(); Abbrv.Tag = AbbrvDecl.getTag(); Abbrv.Children = AbbrvDecl.hasChildren() ? dwarf::DW_CHILDREN_yes : dwarf::DW_CHILDREN_no; for(auto Attribute : AbbrvDecl.attributes()) { - MachOYAML::DWARFAttributeAbbrev AttAbrv; + DWARFYAML::DWARFAttributeAbbrev AttAbrv; AttAbrv.Attribute = Attribute.Attr; AttAbrv.Form = Attribute.Form; Abbrv.Attributes.push_back(AttAbrv); |