[lld] r249038 - ELF2: Tidy up Options.td again.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 1 10:33:38 PDT 2015


Author: ruiu
Date: Thu Oct  1 12:33:38 2015
New Revision: 249038

URL: http://llvm.org/viewvc/llvm-project?rev=249038&view=rev
Log:
ELF2: Tidy up Options.td again.

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=249038&r1=249037&r2=249038&view=diff
==============================================================================
--- lld/trunk/ELF/Options.td (original)
+++ lld/trunk/ELF/Options.td Thu Oct  1 12:33:38 2015
@@ -12,6 +12,8 @@ def L : Joined<["-"], "L">, MetaVarName<
 def allow_multiple_definition: Flag<["--"], "allow-multiple-definition">,
   HelpText<"Allow multiple definitions">;
 
+def allow_shlib_undefined : Flag<["--"], "allow-shlib-undefined">;
+
 def discard_all : Flag<["-"], "discard-all">,
   HelpText<"Delete all local symbols">;
 
@@ -33,6 +35,8 @@ def export_dynamic : Flag<["--"], "expor
 def l : Joined<["-"], "l">, MetaVarName<"<libName>">,
   HelpText<"Root name of library to use">;
 
+def no_allow_shlib_undefined : Flag<["--"], "no-allow-shlib-undefined">;
+
 def noinhibit_exec : Flag<["--"], "noinhibit-exec">,
   HelpText<"Retain the executable output file whenever it is still usable">;
 
@@ -48,12 +52,6 @@ def shared : Flag<["-"], "shared">,
 def sysroot : Joined<["--"], "sysroot=">,
   HelpText<"Set the system root">;
 
-def no_allow_shlib_undefined
-    : Flag<["--"], "no-allow-shlib-undefined">;
-
-def allow_shlib_undefined
-    : Flag<["--"], "allow-shlib-undefined">;
-
 // Aliases
 def alias_Bdynamic_call_shared: Flag<["-"], "call_shared">, Alias<Bdynamic>;
 def alias_Bdynamic_dy: Flag<["-"], "dy">, Alias<Bdynamic>;




More information about the llvm-commits mailing list