diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-10-30 17:51:02 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-10-30 17:51:02 +0000 |
commit | e0aae5b4f30ce283b7023daf3a41a6bd0e1e117e (patch) | |
tree | 82398d9ed4ab950220068dd39d2242c95c545a6d /lib/CodeGen/AsmPrinter | |
parent | 678c35c3861df3d5882553da45e79a89dae20294 (diff) | |
download | external_llvm-e0aae5b4f30ce283b7023daf3a41a6bd0e1e117e.zip external_llvm-e0aae5b4f30ce283b7023daf3a41a6bd0e1e117e.tar.gz external_llvm-e0aae5b4f30ce283b7023daf3a41a6bd0e1e117e.tar.bz2 |
Fix grammar.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167029 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index df162e0..7ac0af7 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -424,7 +424,7 @@ DIE *DwarfDebug::constructInlinedScopeDIE(CompileUnit *TheCU, DISubprogram InlinedSP = getDISubprogram(DS); DIE *OriginDIE = TheCU->getDIE(InlinedSP); if (!OriginDIE) { - DEBUG(dbgs() << "Unable to find original DIE for inlined subprogram."); + DEBUG(dbgs() << "Unable to find original DIE for an inlined subprogram."); return NULL; } @@ -433,7 +433,7 @@ DIE *DwarfDebug::constructInlinedScopeDIE(CompileUnit *TheCU, const MCSymbol *EndLabel = getLabelAfterInsn(RI->second); if (StartLabel == 0 || EndLabel == 0) { - llvm_unreachable("Unexpected Start and End labels for a inlined scope!"); + llvm_unreachable("Unexpected Start and End labels for an inlined scope!"); } assert(StartLabel->isDefined() && "Invalid starting label for an inlined scope!"); |