diff options
author | Vedant Kumar <vsk@apple.com> | 2019-08-26 20:53:34 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2019-08-26 20:53:34 +0000 |
commit | 58a0714885059ebf1595562cefd5885095cae68b (patch) | |
tree | d7bc89d5891a1b9e2e598bb97c2ff9fc4f9c6f52 /llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | |
parent | 533dd0214c05bb4547a20b6733d75fff551bafb3 (diff) | |
download | bcm5719-llvm-58a0714885059ebf1595562cefd5885095cae68b.tar.gz bcm5719-llvm-58a0714885059ebf1595562cefd5885095cae68b.zip |
[DWARF] Rename getDwarf5OrGNUCallSite{Attr,Tag}, NFC
llvm-svn: 369967
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h index 361bb4c669d..1b7ea2673ac 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h @@ -227,12 +227,11 @@ public: void constructAbstractSubprogramScopeDIE(LexicalScope *Scope); - /// This takes the official DWARF 5 tag and returns the appropriate - /// GNU tag if needed. - dwarf::Tag getDwarf5OrGNUCallSiteTag(dwarf::Tag Tag) const; - /// This takes the official DWARF 5 attribute and returns the appropriate - /// GNU attribute if needed. - dwarf::Attribute getDwarf5OrGNUCallSiteAttr(dwarf::Attribute Attr) const; + /// This takes a DWARF 5 tag and returns it or a GNU analog. + dwarf::Tag getDwarf5OrGNUTag(dwarf::Tag Tag) const; + + /// This takes a DWARF 5 attribute and returns it or a GNU analog. + dwarf::Attribute getDwarf5OrGNUAttr(dwarf::Attribute Attr) const; /// This takes a DWARF 5 location atom and either returns it or a GNU analog. dwarf::LocationAtom getDwarf5OrGNULocationAtom(dwarf::LocationAtom Loc) const; |