diff options
author | Eric Christopher <echristo@gmail.com> | 2013-09-09 20:03:17 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-09-09 20:03:17 +0000 |
commit | 5f93bb92998a4333598cd2bf290f3cedbe3d5707 (patch) | |
tree | 8d5721ca0e3b4b20e04ecb6046f3c918515732c4 /llvm/lib/CodeGen | |
parent | b0e769411d66d4f61dc68ed80317c7f2ab2c05f8 (diff) | |
download | bcm5719-llvm-5f93bb92998a4333598cd2bf290f3cedbe3d5707.tar.gz bcm5719-llvm-5f93bb92998a4333598cd2bf290f3cedbe3d5707.zip |
Rename for consistency.
llvm-svn: 190345
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 6 | ||||
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 21f997ea489..547d2535180 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -1109,7 +1109,7 @@ void DwarfDebug::endModule() { // Emit the pubnames and pubtypes sections if requested. if (HasDwarfPubSections) { - emitDebugPubnames(); + emitDebugPubNames(); emitDebugPubTypes(); } @@ -2252,9 +2252,9 @@ void DwarfDebug::emitAccelTypes() { AT.Emit(Asm, SectionBegin, &InfoHolder); } -/// emitDebugPubnames - Emit visible names into a debug pubnames section. +/// emitDebugPubNames - Emit visible names into a debug pubnames section. /// -void DwarfDebug::emitDebugPubnames() { +void DwarfDebug::emitDebugPubNames() { const MCSection *ISec = Asm->getObjFileLowering().getDwarfInfoSection(); typedef DenseMap<const MDNode*, CompileUnit*> CUMapType; diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index afac39c5226..c18fe37ccb5 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -527,7 +527,7 @@ private: void emitAccelTypes(); /// \brief Emit visible names into a debug pubnames section. - void emitDebugPubnames(); + void emitDebugPubNames(); /// \brief Emit visible types into a debug pubtypes section. void emitDebugPubTypes(); |