1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

[NFC] 'DWARFv5' -> 'DWARF v5'

llvm-svn: 323950
This commit is contained in:
Jonas Devlieghere 2018-02-01 10:19:56 +00:00
parent ffe1ecc492
commit c5fd02dfe5
2 changed files with 2 additions and 2 deletions

View File

@ -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:
///
/// .------------------.

View File

@ -3444,7 +3444,7 @@ void DwarfLinker::patchLineTableForUnit(CompileUnit &Unit,
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;