diff options
author | espindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-10-28 18:40:42 +0000 |
---|---|---|
committer | espindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-10-28 18:40:42 +0000 |
commit | 386fbe6a31fe22feeff86b6f7035f8bd276b32e3 (patch) | |
tree | f951372bcfc791c5fc6622b3663ecedaa066544c /gcc/opts.c | |
parent | 71893b0a62f02d77b1ff428ff1e9961035696c37 (diff) | |
download | gcc-386fbe6a31fe22feeff86b6f7035f8bd276b32e3.tar.gz |
2009-10-28 Rafael Avila de Espindola <espindola@google.com>
* common.opt (fuse-linker-plugin): New option.
* gcc.c (LINK_COMMAND_SPEC, main): Rename use-linker-plugin to
fuse-linker-plugin.
* opts.c (common_handle_option): Ignore OPT_fuse_linker_plugin.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@153683 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/opts.c b/gcc/opts.c index 51a0cb95419..72411b662cc 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -2102,6 +2102,10 @@ common_handle_option (size_t scode, const char *arg, int value, /* These are no-ops, preserved for backward compatibility. */ break; + case OPT_fuse_linker_plugin: + /* No-op. Used by the driver and passed to us because it starts with f.*/ + break; + default: /* If the flag was handled in a standard way, assume the lack of processing here is intentional. */ |