aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/gcc/patches-8.x/300-mips_Os_cpu_rtx_cost_model.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2022-10-22 16:15:16 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2022-10-23 22:53:33 +0200
commita14544d1bb6f6840dd64c600c58d938b193c09e3 (patch)
tree7cafa4ef4f5e106faf83b3c7dcea86c4cf5ecabb /toolchain/gcc/patches-8.x/300-mips_Os_cpu_rtx_cost_model.patch
parent58b65525f3165792a998fdb24fda11aa4097a7be (diff)
downloadupstream-a14544d1bb6f6840dd64c600c58d938b193c09e3.tar.gz
upstream-a14544d1bb6f6840dd64c600c58d938b193c09e3.tar.bz2
upstream-a14544d1bb6f6840dd64c600c58d938b193c09e3.zip
toolchain: gcc: Remove gcc 8.x support
This compiler is old and not used by OpenWrt for some time now. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'toolchain/gcc/patches-8.x/300-mips_Os_cpu_rtx_cost_model.patch')
-rw-r--r--toolchain/gcc/patches-8.x/300-mips_Os_cpu_rtx_cost_model.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/toolchain/gcc/patches-8.x/300-mips_Os_cpu_rtx_cost_model.patch b/toolchain/gcc/patches-8.x/300-mips_Os_cpu_rtx_cost_model.patch
deleted file mode 100644
index 2e2c609e48..0000000000
--- a/toolchain/gcc/patches-8.x/300-mips_Os_cpu_rtx_cost_model.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-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.c
-+++ b/gcc/config/mips/mips.c
-@@ -19847,7 +19847,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];