aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/gcc/patches/4.6-linaro/030-gcc_bug_48403.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-11-10 21:10:53 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-11-10 21:10:53 +0000
commit4145445ff6b0d5e2367472d919d274bf61cb1253 (patch)
treed8fb3a5b033e4f3a4bc97e33ed5f4f756518169d /toolchain/gcc/patches/4.6-linaro/030-gcc_bug_48403.patch
parente759507ac8e84e8ff6e5c7cf4e2b9a7c97f9a5b2 (diff)
downloadmaster-187ad058-4145445ff6b0d5e2367472d919d274bf61cb1253.tar.gz
master-187ad058-4145445ff6b0d5e2367472d919d274bf61cb1253.tar.bz2
master-187ad058-4145445ff6b0d5e2367472d919d274bf61cb1253.zip
gcc: remove version 4.6, it is no longer needed
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47443 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/gcc/patches/4.6-linaro/030-gcc_bug_48403.patch')
-rw-r--r--toolchain/gcc/patches/4.6-linaro/030-gcc_bug_48403.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/toolchain/gcc/patches/4.6-linaro/030-gcc_bug_48403.patch b/toolchain/gcc/patches/4.6-linaro/030-gcc_bug_48403.patch
deleted file mode 100644
index 69569de763..0000000000
--- a/toolchain/gcc/patches/4.6-linaro/030-gcc_bug_48403.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/gcc/haifa-sched.c
-+++ b/gcc/haifa-sched.c
-@@ -4654,10 +4654,12 @@ schedule_block (basic_block *target_bb)
-
- if (recog_memoized (insn) >= 0)
- {
-+ memcpy (temp_state, curr_state, dfa_state_size);
- cost = state_transition (curr_state, insn);
- if (sched_pressure != SCHED_PRESSURE_WEIGHTED)
- gcc_assert (cost < 0);
-- cycle_issued_insns++;
-+ if (memcmp (temp_state, curr_state, dfa_state_size) != 0)
-+ cycle_issued_insns++;
- asm_p = false;
- }
- else