diff options
author | Joseph Myers <joseph@codesourcery.com> | 2010-07-30 18:04:37 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2010-07-30 18:04:37 +0100 |
commit | 34251c0ee6c80909aa2579dfdba34a132c10edf1 (patch) | |
tree | 39c4802ab1ec2c73bfc44ddecba5aba0c73eac5a /gcc/opts.c | |
parent | 95b038dd431c7b0053c29d9d330d99c3b3f63b44 (diff) | |
download | gcc-34251c0ee6c80909aa2579dfdba34a132c10edf1.zip gcc-34251c0ee6c80909aa2579dfdba34a132c10edf1.tar.gz gcc-34251c0ee6c80909aa2579dfdba34a132c10edf1.tar.bz2 |
common.opt (-G): Don't define option here.
* common.opt (-G): Don't define option here.
* config/g.opt: New.
* config.gcc: Use g.opt for alpha, frv, ia64, lm32, m32r, mips,
rs6000/powerpc and score targets.
* opts.c (common_handle_option): Don't handle -G here.
* config/alpha/alpha.c (alpha_handle_option): Handle -G.
* config/frv/frv.c (frv_handle_option): Handle -G.
* config/ia64/ia64.c (ia64_handle_option): Handle -G.
* config/lm32/lm32.c (lm32_handle_option, TARGET_HANDLE_OPTION):
New.
* config/m32r/m32r.c (m32r_handle_option): Handle -G.
* config/mips/mips.c (mips_handle_option): Handle -G.
* config/rs6000/rs6000.c (rs6000_handle_option) Handle -G.
* config/score/score.c (score_handle_option): Handle -G.
From-SVN: r162721
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -1560,11 +1560,6 @@ common_handle_option (size_t scode, const char *arg, int value, exit_after_options = true; break; - case OPT_G: - g_switch_value = value; - g_switch_set = true; - break; - case OPT_O: case OPT_Os: case OPT_Ofast: |