diff options
author | Rafael Avila de Espindola <espindola@google.com> | 2009-10-28 18:40:42 +0000 |
---|---|---|
committer | Rafael Espindola <espindola@gcc.gnu.org> | 2009-10-28 18:40:42 +0000 |
commit | da18ea94d9c98c5a7d429e3615309fe80f8edbaf (patch) | |
tree | f951372bcfc791c5fc6622b3663ecedaa066544c /gcc/opts.c | |
parent | 160594b061c238a9bb978326577798f2b21e203e (diff) | |
download | gcc-da18ea94d9c98c5a7d429e3615309fe80f8edbaf.zip gcc-da18ea94d9c98c5a7d429e3615309fe80f8edbaf.tar.gz gcc-da18ea94d9c98c5a7d429e3615309fe80f8edbaf.tar.bz2 |
common.opt (fuse-linker-plugin): New option.
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.
From-SVN: r153683
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. */ |