Rename for consistency.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190345 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2013-09-09 20:03:17 +00:00
parent 328a20471d
commit 5747932508
2 changed files with 4 additions and 4 deletions

View File

@ -1109,7 +1109,7 @@ void DwarfDebug::endModule() {
// Emit the pubnames and pubtypes sections if requested. // Emit the pubnames and pubtypes sections if requested.
if (HasDwarfPubSections) { if (HasDwarfPubSections) {
emitDebugPubnames(); emitDebugPubNames();
emitDebugPubTypes(); emitDebugPubTypes();
} }
@ -2252,9 +2252,9 @@ void DwarfDebug::emitAccelTypes() {
AT.Emit(Asm, SectionBegin, &InfoHolder); 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(); const MCSection *ISec = Asm->getObjFileLowering().getDwarfInfoSection();
typedef DenseMap<const MDNode*, CompileUnit*> CUMapType; typedef DenseMap<const MDNode*, CompileUnit*> CUMapType;

View File

@ -527,7 +527,7 @@ private:
void emitAccelTypes(); void emitAccelTypes();
/// \brief Emit visible names into a debug pubnames section. /// \brief Emit visible names into a debug pubnames section.
void emitDebugPubnames(); void emitDebugPubNames();
/// \brief Emit visible types into a debug pubtypes section. /// \brief Emit visible types into a debug pubtypes section.
void emitDebugPubTypes(); void emitDebugPubTypes();