i386.c (override_options): Move SUBTARGET_OVERRIDE_OPTIONS before defaulting flag_omit_frame_pointer.

2004-11-24  Daniel Jacobowitz  <dan@codesourcery.com>

	* config/i386/i386.c (override_options): Move
	SUBTARGET_OVERRIDE_OPTIONS before defaulting
	flag_omit_frame_pointer.

From-SVN: r91132
This commit is contained in:
Daniel Jacobowitz 2004-11-24 01:19:40 +00:00 committed by Joseph Myers
parent 8ff4764d74
commit 554707bdf8
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2004-11-24 Daniel Jacobowitz <dan@codesourcery.com>
* config/i386/i386.c (override_options): Move
SUBTARGET_OVERRIDE_OPTIONS before defaulting
flag_omit_frame_pointer.
2004-11-23 Richard Henderson <rth@redhat.com>
* rtl.h (validate_subreg): Declare.

View File

@ -1203,6 +1203,10 @@ override_options (void)
int const pta_size = ARRAY_SIZE (processor_alias_table);
#ifdef SUBTARGET_OVERRIDE_OPTIONS
SUBTARGET_OVERRIDE_OPTIONS;
#endif
/* Set the default values for switches whose default depends on TARGET_64BIT
in case they weren't overwritten by command line options. */
if (TARGET_64BIT)
@ -1224,10 +1228,6 @@ override_options (void)
flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
}
#ifdef SUBTARGET_OVERRIDE_OPTIONS
SUBTARGET_OVERRIDE_OPTIONS;
#endif
if (!ix86_tune_string && ix86_arch_string)
ix86_tune_string = ix86_arch_string;
if (!ix86_tune_string)