[llvm] 84c6433 - [DebugInfo] - Fix typo in comment. NFC.

Georgii Rymar via llvm-commits llvm-commits at lists.llvm.org
Wed May 27 02:22:16 PDT 2020


Author: Georgii Rymar
Date: 2020-05-27T12:21:19+03:00
New Revision: 84c643358691b8057199e8c8597428ad0d960786

URL: https://github.com/llvm/llvm-project/commit/84c643358691b8057199e8c8597428ad0d960786
DIFF: https://github.com/llvm/llvm-project/commit/84c643358691b8057199e8c8597428ad0d960786.diff

LOG: [DebugInfo] - Fix typo in comment. NFC.

I've forgot to address this bit when landed D80476.

Added: 
    

Modified: 
    llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp b/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
index 51dc54e49fcc..fe24f3942ffb 100644
--- a/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
+++ b/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
@@ -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;


        


More information about the llvm-commits mailing list