[lld] 5688247 - fix typo to cycle bots

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 1 19:28:21 PST 2021


Author: Nico Weber
Date: 2021-01-01T22:28:11-05:00
New Revision: 568824798f658b8dc9ee7f97de6a1178a61e807a

URL: https://github.com/llvm/llvm-project/commit/568824798f658b8dc9ee7f97de6a1178a61e807a
DIFF: https://github.com/llvm/llvm-project/commit/568824798f658b8dc9ee7f97de6a1178a61e807a.diff

LOG: fix typo to cycle bots

Added: 
    

Modified: 
    lld/MachO/UnwindInfoSection.cpp

Removed: 
    


################################################################################
diff  --git a/lld/MachO/UnwindInfoSection.cpp b/lld/MachO/UnwindInfoSection.cpp
index b4c3a31f8565..afaa69dac8dc 100644
--- a/lld/MachO/UnwindInfoSection.cpp
+++ b/lld/MachO/UnwindInfoSection.cpp
@@ -165,7 +165,7 @@ void UnwindInfoSection::finalize() {
             });
 
   // Truncate the vector to 127 elements.
-  // Common encoding indexes are limited to 0..126, while enconding
+  // Common encoding indexes are limited to 0..126, while encoding
   // indexes 127..255 are local to each second-level page
   if (commonEncodings.size() > COMMON_ENCODINGS_MAX)
     commonEncodings.resize(COMMON_ENCODINGS_MAX);


        


More information about the llvm-commits mailing list