From 0a6aad5991ad0230bd435e2ff12f3e4e9614de58 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Wed, 4 Aug 2021 09:26:29 -0700 Subject: [PATCH] [ELF] Fix typo. NFC --- lld/ELF/Driver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/Driver.cpp b/lld/ELF/Driver.cpp index 9675fef..551a3d3 100644 --- a/lld/ELF/Driver.cpp +++ b/lld/ELF/Driver.cpp @@ -2094,7 +2094,7 @@ static void redirectSymbols(ArrayRef wrapped) { : sym1->section == sym2->section && sym1->value == sym2->value) { // Due to an assembler design flaw, if foo is defined, .symver foo, // foo@v1 defines both foo and foo@v1. Unless foo is bound to a - // different version, GNU ld makes foo@v1 canonical and elimiates foo. + // different version, GNU ld makes foo@v1 canonical and eliminates foo. // Emulate its behavior, otherwise we would have foo or foo@@v1 beside // foo@v1. foo@v1 and foo combining does not apply if they are not // defined in the same place. -- 2.7.4