diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-09-12 01:17:08 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-09-12 01:17:08 +0000 |
commit | e9ffb45b604b5956d59238f3bb69db4d856ec733 (patch) | |
tree | 1101a537118b00405b414a98b83e0ff7f6374fca /llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp | |
parent | 93db40a147a219f6b5a60bdfe34afae33545deed (diff) | |
download | bcm5719-llvm-e9ffb45b604b5956d59238f3bb69db4d856ec733.tar.gz bcm5719-llvm-e9ffb45b604b5956d59238f3bb69db4d856ec733.zip |
Fix typos.
Summary: This fixes a variety of typos in docs, code and headers.
Subscribers: jholewinski, sanjoy, arsenm, llvm-commits
Differential Revision: http://reviews.llvm.org/D12626
llvm-svn: 247495
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp index 45a8820c461..005ceaac3b7 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp @@ -286,9 +286,9 @@ void AsmPrinter::emitDwarfDIE(const DIE &Die) const { void AsmPrinter::emitDwarfAbbrevs(const std::vector<DIEAbbrev *>& Abbrevs) const { - // For each abbrevation. + // For each abbreviation. for (const DIEAbbrev *Abbrev : Abbrevs) { - // Emit the abbrevations code (base 1 index.) + // Emit the abbreviations code (base 1 index.) EmitULEB128(Abbrev->getNumber(), "Abbreviation Code"); // Emit the abbreviations data. |