aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2018-05-31 14:10:37 +0000
committerRui Ueyama <ruiu@google.com>2018-05-31 14:10:37 +0000
commit62716803fee62f8c02701814d4c08e5734a146cf (patch)
tree8baa51ed2412fc90a7179d7429bdfa419f616fb2
parentc2d6418705f2d5ae89033a0c027a3fee5eb1b4fb (diff)
downloadllvm-62716803fee62f8c02701814d4c08e5734a146cf.zip
llvm-62716803fee62f8c02701814d4c08e5734a146cf.tar.gz
llvm-62716803fee62f8c02701814d4c08e5734a146cf.tar.bz2
Remove name from unused options. NFC.
This change makes it impossible to use these options in code. llvm-svn: 333655
-rw-r--r--lld/ELF/Options.td44
1 files changed, 22 insertions, 22 deletions
diff --git a/lld/ELF/Options.td b/lld/ELF/Options.td
index c4d710c..76c268a 100644
--- a/lld/ELF/Options.td
+++ b/lld/ELF/Options.td
@@ -451,25 +451,25 @@ def plugin_opt_thinlto: J<"plugin-opt=thinlto">;
def plugin_opt_slash: J<"plugin-opt=/">;
// Options listed below are silently ignored for now for compatibility.
-def allow_shlib_undefined: F<"allow-shlib-undefined">;
-def detect_odr_violations: F<"detect-odr-violations">;
-def g: Flag<["-"], "g">;
-def long_plt: F<"long-plt">;
-def no_add_needed: F<"no-add-needed">;
-def no_allow_shlib_undefined: F<"no-allow-shlib-undefined">;
-def no_copy_dt_needed_entries: F<"no-copy-dt-needed-entries">;
-def no_ctors_in_init_array: F<"no-ctors-in-init-array">;
-def no_keep_memory: F<"no-keep-memory">;
-def no_mmap_output_file: F<"no-mmap-output-file">;
-def no_warn_mismatch: F<"no-warn-mismatch">;
-def rpath_link: J<"rpath-link">;
-def rpath_link_eq: J<"rpath-link=">;
-def sort_common: F<"sort-common">;
-def stats: F<"stats">;
-def warn_execstack: F<"warn-execstack">;
-def warn_once: F<"warn-once">;
-def warn_shared_textrel: F<"warn-shared-textrel">;
-def EB: F<"EB">;
-def EL: F<"EL">;
-def G: JoinedOrSeparate<["-"], "G">;
-def Qy: F<"Qy">;
+def: F<"allow-shlib-undefined">;
+def: F<"detect-odr-violations">;
+def: Flag<["-"], "g">;
+def: F<"long-plt">;
+def: F<"no-add-needed">;
+def: F<"no-allow-shlib-undefined">;
+def: F<"no-copy-dt-needed-entries">;
+def: F<"no-ctors-in-init-array">;
+def: F<"no-keep-memory">;
+def: F<"no-mmap-output-file">;
+def: F<"no-warn-mismatch">;
+def: J<"rpath-link">;
+def: J<"rpath-link=">;
+def: F<"sort-common">;
+def: F<"stats">;
+def: F<"warn-execstack">;
+def: F<"warn-once">;
+def: F<"warn-shared-textrel">;
+def: F<"EB">;
+def: F<"EL">;
+def: JoinedOrSeparate<["-"], "G">;
+def: F<"Qy">;