[llvm] r323950 - [NFC] 'DWARFv5' -> 'DWARF v5'
Jonas Devlieghere via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 1 02:19:56 PST 2018
Author: jdevlieghere
Date: Thu Feb 1 02:19:56 2018
New Revision: 323950
URL: http://llvm.org/viewvc/llvm-project?rev=323950&view=rev
Log:
[NFC] 'DWARFv5' -> 'DWARF v5'
Modified:
llvm/trunk/include/llvm/CodeGen/AccelTable.h
llvm/trunk/tools/dsymutil/DwarfLinker.cpp
Modified: llvm/trunk/include/llvm/CodeGen/AccelTable.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/AccelTable.h?rev=323950&r1=323949&r2=323950&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/AccelTable.h (original)
+++ llvm/trunk/include/llvm/CodeGen/AccelTable.h Thu Feb 1 02:19:56 2018
@@ -66,7 +66,7 @@
/// If we have a match we look at that same entry in the offsets table and grab
/// the offset in the data for our final match.
///
-/// The DWARFv5 accelerator table consists of zero or more name indices that
+/// The DWARF v5 accelerator table consists of zero or more name indices that
/// are output into an on-disk format that looks like this:
///
/// .------------------.
Modified: llvm/trunk/tools/dsymutil/DwarfLinker.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/dsymutil/DwarfLinker.cpp?rev=323950&r1=323949&r2=323950&view=diff
==============================================================================
--- llvm/trunk/tools/dsymutil/DwarfLinker.cpp (original)
+++ llvm/trunk/tools/dsymutil/DwarfLinker.cpp Thu Feb 1 02:19:56 2018
@@ -3444,7 +3444,7 @@ void DwarfLinker::patchLineTableForUnit(
reportWarning("line table parameters mismatch. Cannot emit.");
else {
uint32_t PrologueEnd = *StmtList + 10 + LineTable.Prologue.PrologueLength;
- // DWARFv5 has an extra 2 bytes of information before the header_length
+ // DWARF v5 has an extra 2 bytes of information before the header_length
// field.
if (LineTable.Prologue.getVersion() == 5)
PrologueEnd += 2;
More information about the llvm-commits
mailing list