[DebugInfo] - Fix typo in comment. NFC.
authorGeorgii Rymar <grimar@accesssoftek.com>
Wed, 27 May 2020 09:21:19 +0000 (12:21 +0300)
committerGeorgii Rymar <grimar@accesssoftek.com>
Wed, 27 May 2020 09:21:19 +0000 (12:21 +0300)
I've forgot to address this bit when landed D80476.

llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp

index 51dc54e..fe24f39 100644 (file)
@@ -304,7 +304,7 @@ constexpr uint64_t getCIEId(bool IsDWARF64, bool IsEH) {
 }
 
 void CIE::dump(raw_ostream &OS, const MCRegisterInfo *MRI, bool IsEH) const {
-  // A CIE with a zero length is a terminator entry in the .eh_frame sextion.
+  // A CIE with a zero length is a terminator entry in the .eh_frame section.
   if (IsEH && Length == 0) {
     OS << format("%08" PRIx64, Offset) << " ZERO terminator\n";
     return;