summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-4.9/0059-gcc-PR-rtl-optimization-63348.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-4.9/0059-gcc-PR-rtl-optimization-63348.patch')
-rw-r--r--meta/recipes-devtools/gcc/gcc-4.9/0059-gcc-PR-rtl-optimization-63348.patch58
1 files changed, 58 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.9/0059-gcc-PR-rtl-optimization-63348.patch b/meta/recipes-devtools/gcc/gcc-4.9/0059-gcc-PR-rtl-optimization-63348.patch
new file mode 100644
index 0000000000..77f6be33d1
--- /dev/null
+++ b/meta/recipes-devtools/gcc/gcc-4.9/0059-gcc-PR-rtl-optimization-63348.patch
@@ -0,0 +1,58 @@
1From 6eae3e637fcc22d21b51d44d61e3a9cb4825e776 Mon Sep 17 00:00:00 2001
2From: Jackie Huang <jackie.huang@windriver.com>
3Date: Thu, 30 Oct 2014 20:37:14 -0700
4Subject: [PATCH]PR rtl-optimization/63348
5
6PR rtl-optimization/63348
7* emit-rtl.c (try_split): Do not emit extra barrier.
8
9Note: this patch is to fix the side effect introduced by r212171 which was reported at:
10https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63348
11
12git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@215613 138bc75d-0d04-0410-961f-82ee72b054a4
13
14Upstream-status: Backport [https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=215613]
15Signed-off-by: Baoshan Pang <baoshan.pang@windriver.com>
16Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
17---
18 gcc/emit-rtl.c | 11 -----------
19 1 files changed, 0 insertions(+), 11 deletions(-)
20
21diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c
22index 4736f8d..ae69dbd 100644
23--- a/gcc/emit-rtl.c
24+++ b/gcc/emit-rtl.c
25@@ -3422,7 +3422,6 @@ try_split (rtx pat, rtx trial, int last)
26 {
27 rtx before = PREV_INSN (trial);
28 rtx after = NEXT_INSN (trial);
29- int has_barrier = 0;
30 rtx note, seq, tem;
31 int probability;
32 rtx insn_last, insn;
33@@ -3441,14 +3440,6 @@ try_split (rtx pat, rtx trial, int last)
34
35 split_branch_probability = -1;
36
37- /* If we are splitting a JUMP_INSN, it might be followed by a BARRIER.
38- We may need to handle this specially. */
39- if (after && BARRIER_P (after))
40- {
41- has_barrier = 1;
42- after = NEXT_INSN (after);
43- }
44-
45 if (!seq)
46 return trial;
47
48@@ -3594,8 +3585,6 @@ try_split (rtx pat, rtx trial, int last)
49 tem = emit_insn_after_setloc (seq, trial, INSN_LOCATION (trial));
50
51 delete_insn (trial);
52- if (has_barrier)
53- emit_barrier_after (tem);
54
55 /* Recursively call try_split for each new insn created; by the
56 time control returns here that insn will be fully split, so
57--
581.7.1