diff options
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/i386.c | 3 | ||||
-rw-r--r-- | gcc/config/i386/i386.opt | 4 | ||||
-rw-r--r-- | gcc/config/mcore/mcore.c | 5 | ||||
-rw-r--r-- | gcc/config/mcore/mcore.opt | 5 |
4 files changed, 8 insertions, 9 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index dcf8875..abec057 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -2025,9 +2025,6 @@ static enum calling_abi ix86_function_abi (const_tree); static int ix86_tune_defaulted; static int ix86_arch_specified; -/* Bit flags that specify the ISA we are compiling for. */ -int ix86_isa_flags = TARGET_64BIT_DEFAULT | TARGET_SUBTARGET_ISA_DEFAULT; - /* A mask of ix86_isa_flags that includes bit X if X was set or cleared on the command line. */ static int ix86_isa_flags_explicit; diff --git a/gcc/config/i386/i386.opt b/gcc/config/i386/i386.opt index aa78cdf..38a53f6 100644 --- a/gcc/config/i386/i386.opt +++ b/gcc/config/i386/i386.opt @@ -19,6 +19,10 @@ ; along with GCC; see the file COPYING3. If not see ; <http://www.gnu.org/licenses/>. +; Bit flags that specify the ISA we are compiling for. +Variable +int ix86_isa_flags = TARGET_64BIT_DEFAULT | TARGET_SUBTARGET_ISA_DEFAULT + ;; Definitions to add to the cl_target_option structure ;; -march= processor TargetSave diff --git a/gcc/config/mcore/mcore.c b/gcc/config/mcore/mcore.c index b81a8b9..ce58827 100644 --- a/gcc/config/mcore/mcore.c +++ b/gcc/config/mcore/mcore.c @@ -46,11 +46,6 @@ #include "target-def.h" #include "df.h" -/* Maximum size we are allowed to grow the stack in a single operation. - If we want more, we must do it in increments of at most this size. - If this value is 0, we don't check at all. */ -int mcore_stack_increment = STACK_UNITS_MAXSTEP; - /* For dumping information about frame sizes. */ char * mcore_current_function_name = 0; long mcore_current_compilation_timestamp = 0; diff --git a/gcc/config/mcore/mcore.opt b/gcc/config/mcore/mcore.opt index c445237..8e465d3 100644 --- a/gcc/config/mcore/mcore.opt +++ b/gcc/config/mcore/mcore.opt @@ -63,8 +63,11 @@ mslow-bytes Target Report Mask(SLOW_BYTES) Prefer word accesses over byte accesses +; Maximum size we are allowed to grow the stack in a single operation. +; If we want more, we must do it in increments of at most this size. +; If this value is 0, we don't check at all. mstack-increment= -Target RejectNegative Joined UInteger Var(mcore_stack_increment) VarExists +Target RejectNegative Joined UInteger Var(mcore_stack_increment) Init(STACK_UNITS_MAXSTEP) Set the maximum amount for a single stack increment operation mwide-bitfields |