diff options
author | Martin Storsjö <martin@martin.st> | 2020-10-06 13:03:49 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2020-10-07 15:14:07 +0300 |
commit | 6e6a5acf005681d6b6815c0618d0d263ef8397fa (patch) | |
tree | 0aadc3a6084533c382d3fe3e46ce878ad2ac9ae2 /lld/MinGW | |
parent | fed0f890e5698a7a408acaf0aa23319e918f6a2a (diff) | |
download | llvm-6e6a5acf005681d6b6815c0618d0d263ef8397fa.zip llvm-6e6a5acf005681d6b6815c0618d0d263ef8397fa.tar.gz llvm-6e6a5acf005681d6b6815c0618d0d263ef8397fa.tar.bz2 |
[LLD] [MinGW] Move an option definitions to alphabetical order, wrap a line. NFC.
Diffstat (limited to 'lld/MinGW')
-rw-r--r-- | lld/MinGW/Options.td | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lld/MinGW/Options.td b/lld/MinGW/Options.td index d9f64c4..0604b45 100644 --- a/lld/MinGW/Options.td +++ b/lld/MinGW/Options.td @@ -80,7 +80,10 @@ def strip_all: F<"strip-all">, HelpText<"Omit all symbol information from the output binary">; def strip_debug: F<"strip-debug">, HelpText<"Omit all debug information, but keep symbol information">; -defm reproduce: Eq<"reproduce", "Write a tar file containing input files and command line options to reproduce link">; +defm reproduce: Eq<"reproduce", + "Write a tar file containing input files and command line options to reproduce link">; +defm require_defined: Eq<"require-defined", + "Force symbol to be added to symbol table as an undefined one">; defm undefined: Eq<"undefined", "Include symbol in the link, if available">; defm whole_archive: B<"whole-archive", "Include all object files for following archives", @@ -88,8 +91,6 @@ defm whole_archive: B<"whole-archive", def v: Flag<["-"], "v">, HelpText<"Display the version number">; def verbose: F<"verbose">, HelpText<"Verbose mode">; def version: F<"version">, HelpText<"Display the version number and exit">; -defm require_defined: Eq<"require-defined", - "Force symbol to be added to symbol table as an undefined one">; // LLD specific options def _HASH_HASH_HASH : Flag<["-"], "###">, |