diff options
author | Eric Christopher <echristo@gmail.com> | 2013-10-01 00:43:31 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-10-01 00:43:31 +0000 |
commit | 1d06eb5d8654098ad6384705aabdeb15df0de0ec (patch) | |
tree | a3dff9d7005263f524d93902c23ee519772bf673 | |
parent | 4a962f03bebef9e3c7d501580357a303638b2700 (diff) | |
download | bcm5719-llvm-1d06eb5d8654098ad6384705aabdeb15df0de0ec.tar.gz bcm5719-llvm-1d06eb5d8654098ad6384705aabdeb15df0de0ec.zip |
Update comments.
llvm-svn: 191720
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index bb4f8afe1cf..7dfd1dc083d 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -775,7 +775,7 @@ CompileUnit *DwarfDebug::constructCompileUnit(const MDNode *N) { if (!CompilationDir.empty()) NewCU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir); - // Flag to let the linker know we have emitted new style pubnames. Only + // Flags to let the linker know we have emitted new style pubnames. Only // emit it here if we don't have a skeleton CU for split dwarf. if (GenerateGnuPubSections) { if (Asm->MAI->doesDwarfUseRelocationsAcrossSections()) @@ -2964,7 +2964,7 @@ CompileUnit *DwarfDebug::constructSkeletonCU(const CompileUnit *CU) { if (!CompilationDir.empty()) NewCU->addLocalString(Die, dwarf::DW_AT_comp_dir, CompilationDir); - // Flag to let the linker know we have emitted new style pubnames. + // Flags to let the linker know we have emitted new style pubnames. if (GenerateGnuPubSections) { if (Asm->MAI->doesDwarfUseRelocationsAcrossSections()) NewCU->addLabel(Die, dwarf::DW_AT_GNU_pubnames, dwarf::DW_FORM_sec_offset, |