[lld] 872efb0 - fix comment typo to cycle bots

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 17 08:53:57 PST 2021


Author: Nico Weber
Date: 2021-02-17T11:53:42-05:00
New Revision: 872efb0b31f473d324adf74efc4e7809741f1414

URL: https://github.com/llvm/llvm-project/commit/872efb0b31f473d324adf74efc4e7809741f1414
DIFF: https://github.com/llvm/llvm-project/commit/872efb0b31f473d324adf74efc4e7809741f1414.diff

LOG: fix comment typo to cycle bots

Added: 
    

Modified: 
    lld/ELF/LTO.cpp

Removed: 
    


################################################################################
diff  --git a/lld/ELF/LTO.cpp b/lld/ELF/LTO.cpp
index 0d7cc45a23f2..2dec810dff32 100644
--- a/lld/ELF/LTO.cpp
+++ b/lld/ELF/LTO.cpp
@@ -57,9 +57,9 @@ static std::unique_ptr<raw_fd_ostream> openFile(StringRef file) {
   return ret;
 }
 
-// The merged bitcode after LTO is large. Try openning a file stream that
+// The merged bitcode after LTO is large. Try opening a file stream that
 // supports reading, seeking and writing. Such a file allows BitcodeWriter to
-// flush buffered data to reduce memory comsuption. If this fails, open a file
+// flush buffered data to reduce memory consumption. If this fails, open a file
 // stream that supports only write.
 static std::unique_ptr<raw_fd_ostream> openLTOOutputFile(StringRef file) {
   std::error_code ec;


        


More information about the llvm-commits mailing list