Skip to content

Commit 6e6a5ac

Browse files
committed
[LLD] [MinGW] Move an option definitions to alphabetical order, wrap a line. NFC.
1 parent fed0f89 commit 6e6a5ac

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lld/MinGW/Options.td

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,16 +80,17 @@ def strip_all: F<"strip-all">,
8080
HelpText<"Omit all symbol information from the output binary">;
8181
def strip_debug: F<"strip-debug">,
8282
HelpText<"Omit all debug information, but keep symbol information">;
83-
defm reproduce: Eq<"reproduce", "Write a tar file containing input files and command line options to reproduce link">;
83+
defm reproduce: Eq<"reproduce",
84+
"Write a tar file containing input files and command line options to reproduce link">;
85+
defm require_defined: Eq<"require-defined",
86+
"Force symbol to be added to symbol table as an undefined one">;
8487
defm undefined: Eq<"undefined", "Include symbol in the link, if available">;
8588
defm whole_archive: B<"whole-archive",
8689
"Include all object files for following archives",
8790
"No longer include all object files for following archives">;
8891
def v: Flag<["-"], "v">, HelpText<"Display the version number">;
8992
def verbose: F<"verbose">, HelpText<"Verbose mode">;
9093
def version: F<"version">, HelpText<"Display the version number and exit">;
91-
defm require_defined: Eq<"require-defined",
92-
"Force symbol to be added to symbol table as an undefined one">;
9394

9495
// LLD specific options
9596
def _HASH_HASH_HASH : Flag<["-"], "###">,

0 commit comments

Comments
 (0)