[lld] r292049 - Move a flag definition to the right place as -demangle is not ignored.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Sat Jan 14 19:45:46 PST 2017


Author: ruiu
Date: Sat Jan 14 21:45:46 2017
New Revision: 292049

URL: http://llvm.org/viewvc/llvm-project?rev=292049&view=rev
Log:
Move a flag definition to the right place as -demangle is not ignored.

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=292049&r1=292048&r2=292049&view=diff
==============================================================================
--- lld/trunk/ELF/Options.td (original)
+++ lld/trunk/ELF/Options.td Sat Jan 14 21:45:46 2017
@@ -45,6 +45,8 @@ def color_diagnostics: F<"color-diagnost
 def color_diagnostics_eq: J<"color-diagnostics=">,
   HelpText<"Use colors in diagnostics">;
 
+def demangle: F<"demangle">, HelpText<"Demangle symbol names">;
+
 def disable_new_dtags: F<"disable-new-dtags">,
   HelpText<"Disable new dynamic tags">;
 
@@ -331,7 +333,6 @@ def plugin_opt_eq: J<"plugin-opt=">;
 def allow_shlib_undefined: F<"allow-shlib-undefined">;
 def cref: Flag<["--"], "cref">;
 def define_common: F<"define-common">;
-def demangle: F<"demangle">;
 def detect_odr_violations: F<"detect-odr-violations">;
 def g: Flag<["-"], "g">;
 def no_add_needed: F<"no-add-needed">;




More information about the llvm-commits mailing list