Rename for consistency.

llvm-svn: 190345
This commit is contained in:
Eric Christopher 2013-09-09 20:03:17 +00:00
parent b0e769411d
commit 5f93bb9299
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.
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;

View File

@ -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();