summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-30 17:51:02 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-30 17:51:02 +0000
commit10e0e2ec49c952b9b060731b6bedb68db70038a0 (patch)
tree4074f23caf33241bf640519fe2cee1cbf6163bd6 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
parent3b1c97aa74c6bf91fcdf007708586f9bbf3c711f (diff)
downloadbcm5719-llvm-10e0e2ec49c952b9b060731b6bedb68db70038a0.tar.gz
bcm5719-llvm-10e0e2ec49c952b9b060731b6bedb68db70038a0.zip
Fix grammar.
llvm-svn: 167029
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
index df162e07a88..7ac0af70306 100644
--- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
+++ b/llvm/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!");
OpenPOWER on IntegriCloud