From: Daniel Bertalan Date: Thu, 23 Jun 2022 22:19:18 +0000 (+0200) Subject: [NFC][lld] Fix typos to test commit access X-Git-Tag: upstream/15.0.7~3731 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0836fc395f5518966be23bf8dd5ee0010758d794;p=platform%2Fupstream%2Fllvm.git [NFC][lld] Fix typos to test commit access --- diff --git a/lld/CMakeLists.txt b/lld/CMakeLists.txt index f51c864..ec11de7 100644 --- a/lld/CMakeLists.txt +++ b/lld/CMakeLists.txt @@ -72,7 +72,7 @@ if(LLD_BUILT_STANDALONE) # path is removed. set(MAIN_INCLUDE_DIR "${LLVM_INCLUDE_DIR}") set(LLVM_OBJ_DIR "${LLVM_BINARY_DIR}") - # N.B. this is just a default value, the CACHE PATHs below can be overriden. + # N.B. this is just a default value, the CACHE PATHs below can be overridden. set(MAIN_SRC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../llvm") endif() diff --git a/lld/include/lld/Common/ErrorHandler.h b/lld/include/lld/Common/ErrorHandler.h index 69e798c..0b69bb6 100644 --- a/lld/include/lld/Common/ErrorHandler.h +++ b/lld/include/lld/Common/ErrorHandler.h @@ -134,7 +134,7 @@ private: // We wrap stdout and stderr so that you can pass alternative stdout/stderr as // arguments to lld::*::link() functions. Since lld::outs() or lld::errs() can // be indirectly called from multiple threads, we protect them using a mutex. - // In the future, we plan on supporting several concurent linker contexts, + // In the future, we plan on supporting several concurrent linker contexts, // which explains why the mutex is not a global but part of this context. std::mutex mu; llvm::raw_ostream *stdoutOS{};