Remove name from unused options. NFC.

This change makes it impossible to use these options in code.

llvm-svn: 333655
This commit is contained in:
Rui Ueyama 2018-05-31 14:10:37 +00:00
parent c2d6418705
commit 62716803fe
1 changed files with 22 additions and 22 deletions

View File

@ -451,25 +451,25 @@ def plugin_opt_thinlto: J<"plugin-opt=thinlto">;
def plugin_opt_slash: J<"plugin-opt=/">; def plugin_opt_slash: J<"plugin-opt=/">;
// Options listed below are silently ignored for now for compatibility. // Options listed below are silently ignored for now for compatibility.
def allow_shlib_undefined: F<"allow-shlib-undefined">; def: F<"allow-shlib-undefined">;
def detect_odr_violations: F<"detect-odr-violations">; def: F<"detect-odr-violations">;
def g: Flag<["-"], "g">; def: Flag<["-"], "g">;
def long_plt: F<"long-plt">; def: F<"long-plt">;
def no_add_needed: F<"no-add-needed">; def: F<"no-add-needed">;
def no_allow_shlib_undefined: F<"no-allow-shlib-undefined">; def: F<"no-allow-shlib-undefined">;
def no_copy_dt_needed_entries: F<"no-copy-dt-needed-entries">; def: F<"no-copy-dt-needed-entries">;
def no_ctors_in_init_array: F<"no-ctors-in-init-array">; def: F<"no-ctors-in-init-array">;
def no_keep_memory: F<"no-keep-memory">; def: F<"no-keep-memory">;
def no_mmap_output_file: F<"no-mmap-output-file">; def: F<"no-mmap-output-file">;
def no_warn_mismatch: F<"no-warn-mismatch">; def: F<"no-warn-mismatch">;
def rpath_link: J<"rpath-link">; def: J<"rpath-link">;
def rpath_link_eq: J<"rpath-link=">; def: J<"rpath-link=">;
def sort_common: F<"sort-common">; def: F<"sort-common">;
def stats: F<"stats">; def: F<"stats">;
def warn_execstack: F<"warn-execstack">; def: F<"warn-execstack">;
def warn_once: F<"warn-once">; def: F<"warn-once">;
def warn_shared_textrel: F<"warn-shared-textrel">; def: F<"warn-shared-textrel">;
def EB: F<"EB">; def: F<"EB">;
def EL: F<"EL">; def: F<"EL">;
def G: JoinedOrSeparate<["-"], "G">; def: JoinedOrSeparate<["-"], "G">;
def Qy: F<"Qy">; def: F<"Qy">;