c758d6427c
Deleted (upstreamed): - 020-Include-safe-ctype.h-after-C-standard-headers-to-avo.patch [1] - 021-libcc1-fix-vector-include.patch [2] All other patches automatically rebased. Note that selecting GCC 14, as of now, *will* result in build failures. The packages that fail to build will be fixed as they're found. Thus, GCC 13.x is the default, for the time being. [1] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=9970b576b7e4ae337af1268395ff221348c4b34a [2] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=5213047b1d50af63dfabb5e5649821a6cb157e33 Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
22 lines
629 B
Diff
22 lines
629 B
Diff
commit ecf7671b769fe96f7b5134be442089f8bdba55d2
|
|
Author: Felix Fietkau <nbd@nbd.name>
|
|
Date: Thu Aug 4 20:29:45 2016 +0200
|
|
|
|
gcc: add a patch to generate better code with Os on mips
|
|
|
|
Also happens to reduce compressed code size a bit
|
|
|
|
Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|
|
|
--- a/gcc/config/mips/mips.cc
|
|
+++ b/gcc/config/mips/mips.cc
|
|
@@ -20444,7 +20444,7 @@ mips_option_override (void)
|
|
flag_pcc_struct_return = 0;
|
|
|
|
/* Decide which rtx_costs structure to use. */
|
|
- if (optimize_size)
|
|
+ if (0 && optimize_size)
|
|
mips_cost = &mips_rtx_cost_optimize_size;
|
|
else
|
|
mips_cost = &mips_rtx_cost_data[mips_tune];
|