[lld] r333647 - Fix a wrong `ld.lld --help` message.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Thu May 31 06:00:38 PDT 2018


Author: ruiu
Date: Thu May 31 06:00:38 2018
New Revision: 333647

URL: http://llvm.org/viewvc/llvm-project?rev=333647&view=rev
Log:
Fix a wrong `ld.lld --help` message.

Modified:
    lld/trunk/ELF/Options.td

Modified: lld/trunk/ELF/Options.td
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Options.td?rev=333647&r1=333646&r2=333647&view=diff
==============================================================================
--- lld/trunk/ELF/Options.td (original)
+++ lld/trunk/ELF/Options.td Thu May 31 06:00:38 2018
@@ -96,7 +96,7 @@ def discard_locals: F<"discard-locals">,
   HelpText<"Delete temporary local symbols">;
 
 def discard_none: F<"discard-none">,
-  HelpText<"Keep all symbols in the symbol table (default)">;
+  HelpText<"Keep all symbols in the symbol table">;
 
 defm dynamic_linker: Eq<"dynamic-linker", "Which dynamic linker to use">;
 




More information about the llvm-commits mailing list