diff options
author | Davide Italiano <davide@freebsd.org> | 2015-09-24 15:12:34 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2015-09-24 15:12:34 +0000 |
commit | bf37cdec28108097ef7d0bc3e8baebd1ce5b475d (patch) | |
tree | 83e841b97a52455f5394270b2df9dced070c5d9e | |
parent | e1901cc33df90d0f32b58380cc4ad619496d09e3 (diff) | |
download | bcm5719-llvm-bf37cdec28108097ef7d0bc3e8baebd1ce5b475d.tar.gz bcm5719-llvm-bf37cdec28108097ef7d0bc3e8baebd1ce5b475d.zip |
[ELF2] Remove ignored options handling.
This was prematurely committed (and I take the blame for that).
Ideally, we want to support only ignored options that are really used
by somebody. Some of the options listed are not even supported by gold
(but only by ld.bfd), which says a lot about their "real-world" usefulness.
llvm-svn: 248503
-rw-r--r-- | lld/ELF/Options.td | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lld/ELF/Options.td b/lld/ELF/Options.td index 5ab430137c7..897fc157502 100644 --- a/lld/ELF/Options.td +++ b/lld/ELF/Options.td @@ -31,21 +31,5 @@ def alias_discard_locals: Flag<["-"], "X">, def discard_none : Flag<["-"], "discard-none">, HelpText<"Keep all symbols in the symbol table">; -//===----------------------------------------------------------------------===// -/// Ignored options -//===----------------------------------------------------------------------===// - -def dashg : Flag<["-"], "g">, - HelpText<"Ignored.">; - -def Qy : Flag<["-"], "Qy">, - HelpText<"Ignored for SVR4 Compatibility">; - -def qmagic : Flag<["-"], "qmagic">, - HelpText<"Ignored for Linux Compatibility">; - -def sunassert : Flag<["-"], "assert">, - HelpText<"Ignored for SunOS Compatibility">; - def export_dynamic : Flag<["--"], "export-dynamic">, HelpText<"Put symbols in the dynamic symbol table">; |