[lld] 3bd72b2 - [ELF][NFC] Change comment terminology
Alex Brachet via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 29 04:22:34 PDT 2023
Author: Alex Brachet
Date: 2023-06-29T11:22:00Z
New Revision: 3bd72b2a58b9d7a0d49a97fb6c50104602f67a25
URL: https://github.com/llvm/llvm-project/commit/3bd72b2a58b9d7a0d49a97fb6c50104602f67a25
DIFF: https://github.com/llvm/llvm-project/commit/3bd72b2a58b9d7a0d49a97fb6c50104602f67a25.diff
LOG: [ELF][NFC] Change comment terminology
Differential Revision: https://reviews.llvm.org/D153978
Added:
Modified:
lld/ELF/MarkLive.cpp
Removed:
################################################################################
diff --git a/lld/ELF/MarkLive.cpp b/lld/ELF/MarkLive.cpp
index 7db7d1c257d469..cdd4bfe73f47ca 100644
--- a/lld/ELF/MarkLive.cpp
+++ b/lld/ELF/MarkLive.cpp
@@ -212,7 +212,7 @@ template <class ELFT> void MarkLive<ELFT>::run() {
// Add GC root symbols.
// Preserve externally-visible symbols if the symbols defined by this
- // file can interrupt other ELF file's symbols at runtime.
+ // file can interpose other ELF file's symbols at runtime.
for (Symbol *sym : symtab.getSymbols())
if (sym->includeInDynsym() && sym->partition == partition)
markSymbol(sym);
More information about the llvm-commits
mailing list