Skip to content

Commit 8f9bcd1

Browse files
committed
Fix spelling and format specifier
1 parent 5ab819f commit 8f9bcd1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -366,8 +366,8 @@ Error DWARFUnitHeader::applyIndexEntry(const DWARFUnitIndex::Entry *Entry) {
366366
auto *AbbrEntry = IndexEntry->getContribution(DW_SECT_ABBREV);
367367
if (!AbbrEntry)
368368
return createStringError(errc::invalid_argument,
369-
"DWARF package unit at offset 0x%8.8 " PRIx64
370-
" mising abbreviation column",
369+
"DWARF package unit at offset 0x%8.8" PRIx64
370+
" missing abbreviation column",
371371
Offset);
372372

373373
AbbrOffset = AbbrEntry->getOffset();

llvm/test/DebugInfo/X86/invalid-cu-abbrev-contribution-dwp.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# RUN: llvm-mc -triple x86_64-unknown-linux %s -filetype=obj -o - | \
22
# RUN: llvm-dwarfdump -debug-info - 2>&1 | FileCheck %s
33

4-
# CHECK: warning: DWARF package unit at offset 0x00000000 mising abbreviation column
4+
# CHECK: warning: DWARF package unit at offset 0x00000000 missing abbreviation column
55

66
.section .debug_abbrev.dwo, "e", @progbits
77
.LAbbrBegin:

0 commit comments

Comments
 (0)