The issue reported on the patch has been fixed in GCC 13.4.0[1],
14.2.0[2] and 15.1.0[3]. And we have already removed the GCC 14
patch variant in commit
a1b9c28edd ("toolchain: gcc: drop 110-Fix-MIPS-PR-84790.patch").
[1] https://gcc.gnu.org/cgit/gcc/commit/gcc/config/mips/mips.cc?h=releases/gcc-13.4.0&id=3be8fa7b19d218ca5812d71801e3e83ee2260ea0
[2] https://gcc.gnu.org/cgit/gcc/commit/gcc/config/mips/mips.cc?h=releases/gcc-14.2.0&id=201cfa725587d13867b4dc25955434ebe90aff7b
[3] https://gcc.gnu.org/cgit/gcc/commit/gcc/config/mips/mips.cc?h=releases/gcc-15.1.0&id=915440eed21de367cb41857afb5273aff5bcb737
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
Link: https://github.com/openwrt/openwrt/pull/23196
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
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
|
|
@@ -20222,7 +20222,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];
|