i386-common.c (ix86_option_optimization_table): Move OPT_free processing from ...

* common/config/i386/i386-common.c (ix86_option_optimization_table):
	Move OPT_free processing from ...
	* config/i386/i386.c (ix86_option_override_internal):  ... here.

From-SVN: r182623
This commit is contained in:
Uros Bizjak 2011-12-22 15:39:35 +01:00
parent 50c9d04997
commit 95c6483002
3 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2011-12-22 Uros Bizjak <ubizjak@gmail.com>
* common/config/i386/i386-common.c (ix86_option_optimization_table):
Move OPT_free processing from ...
* config/i386/i386.c (ix86_option_override_internal): ... here.
2011-12-21 Richard Earnshaw <rearnsha@arm.com>
PR target/51643

View File

@ -599,6 +599,8 @@ ix86_handle_option (struct gcc_options *opts,
static const struct default_options ix86_option_optimization_table[] =
{
/* Enable redundant extension instructions removal at -O2 and higher. */
{ OPT_LEVELS_2_PLUS, OPT_free, NULL, 1 },
/* Turn off -fschedule-insns by default. It tends to make the
problem with not enough registers even worse. */
{ OPT_LEVELS_ALL, OPT_fschedule_insns, NULL, 0 },

View File

@ -3445,10 +3445,6 @@ ix86_option_override_internal (bool main_args_p)
#define USE_X86_64_FRAME_POINTER 0
#endif
/* Enable redundant extension instructions removal at -O2 and higher. */
if (optimize >= 2 && !global_options_set.x_flag_ree)
flag_ree = 1;
/* 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)