diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-07-30 17:04:37 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-07-30 17:04:37 +0000 |
commit | d1e5a65f1848579742de721f3af824f32f4dcc12 (patch) | |
tree | 39c4802ab1ec2c73bfc44ddecba5aba0c73eac5a /gcc/config/g.opt | |
parent | bf62d0c286e373b851e60990c026a21394678aec (diff) | |
download | gcc-d1e5a65f1848579742de721f3af824f32f4dcc12.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@162721 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/g.opt')
-rw-r--r-- | gcc/config/g.opt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gcc/config/g.opt b/gcc/config/g.opt new file mode 100644 index 00000000000..346a4d1af92 --- /dev/null +++ b/gcc/config/g.opt @@ -0,0 +1,30 @@ +; -G option (small data, some targets only). + +; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 +; Free Software Foundation, Inc. +; +; This file is part of GCC. +; +; GCC is free software; you can redistribute it and/or modify it under +; the terms of the GNU General Public License as published by the Free +; Software Foundation; either version 3, or (at your option) any later +; version. +; +; GCC is distributed in the hope that it will be useful, but WITHOUT ANY +; WARRANTY; without even the implied warranty of MERCHANTABILITY or +; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +; for more details. +; +; You should have received a copy of the GNU General Public License +; along with GCC; see the file COPYING3. If not see +; <http://www.gnu.org/licenses/>. + +; See the GCC internals manual (options.texi) for a description of this file's format. + +; Please try to keep this file in ASCII collating order. + +G +Target Joined Separate UInteger +-G<number> Put global and static data smaller than <number> bytes into a special section (on some targets) + +; This comment is to ensure we retain the blank line above. |