aboutsummaryrefslogtreecommitdiff
path: root/gcc/opts.c
diff options
context:
space:
mode:
authorRafael Avila de Espindola <espindola@google.com>2009-10-28 18:40:42 +0000
committerRafael Espindola <espindola@gcc.gnu.org>2009-10-28 18:40:42 +0000
commitda18ea94d9c98c5a7d429e3615309fe80f8edbaf (patch)
treef951372bcfc791c5fc6622b3663ecedaa066544c /gcc/opts.c
parent160594b061c238a9bb978326577798f2b21e203e (diff)
downloadgcc-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.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/opts.c b/gcc/opts.c
index 51a0cb9..72411b6 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. */