From d6fc714ac15f2a9f13b096ad7bf4a8254205ec87 Mon Sep 17 00:00:00 2001 From: Armando Montanez Date: Wed, 10 Oct 2018 21:16:57 +0000 Subject: [PATCH] Test commit: fix typo in comment llvm-svn: 344185 --- tools/llvm-objcopy/llvm-objcopy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/llvm-objcopy/llvm-objcopy.cpp b/tools/llvm-objcopy/llvm-objcopy.cpp index 3e494f92b67..41c6ef3f3dc 100644 --- a/tools/llvm-objcopy/llvm-objcopy.cpp +++ b/tools/llvm-objcopy/llvm-objcopy.cpp @@ -523,7 +523,7 @@ static void handleArgs(const CopyConfig &Config, Object &Obj, // The purpose of this loop is to mark symbols referenced by sections // (like GroupSection or RelocationSection). This way, we know which - // symbols are still 'needed' and wich are not. + // symbols are still 'needed' and which are not. if (Config.StripUnneeded) { for (auto &Section : Obj.sections()) Section.markSymbols();