sparc.c (sparc_option_override): If not set by the user, force flag_ira_share_save_slots to 0.
* config/sparc/sparc.c (sparc_option_override): If not set by the user, force flag_ira_share_save_slots to 0. From-SVN: r174148
This commit is contained in:
parent
5bb92e54b7
commit
24d1bbc7b5
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-05-24 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* config/sparc/sparc.c (sparc_option_override): If not set by the user,
|
||||
force flag_ira_share_save_slots to 0.
|
||||
|
||||
2011-05-24 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* var-tracking.c (compute_cfa_pointer): Adjust head comment.
|
||||
|
|
|
@ -933,6 +933,12 @@ sparc_option_override (void)
|
|||
? 64 : 32),
|
||||
global_options.x_param_values,
|
||||
global_options_set.x_param_values);
|
||||
|
||||
/* Disable save slot sharing for call-clobbered registers by default.
|
||||
The IRA sharing algorithm works on single registers only and this
|
||||
pessimizes for double floating-point registers. */
|
||||
if (!global_options_set.x_flag_ira_share_save_slots)
|
||||
flag_ira_share_save_slots = 0;
|
||||
}
|
||||
|
||||
/* Miscellaneous utilities. */
|
||||
|
|
Loading…
Add table
Reference in a new issue