You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
461 B

  1. Use the proper rtx cost model for the selected CPU, even when optimizing
  2. for size. This generates better code.
  3. --- a/gcc/config/mips/mips.c
  4. +++ b/gcc/config/mips/mips.c
  5. @@ -17483,7 +17483,7 @@ mips_option_override (void)
  6. flag_pcc_struct_return = 0;
  7. /* Decide which rtx_costs structure to use. */
  8. - if (optimize_size)
  9. + if (0 && optimize_size)
  10. mips_cost = &mips_rtx_cost_optimize_size;
  11. else
  12. mips_cost = &mips_rtx_cost_data[mips_tune];