diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-02-02 01:51:02 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-15 08:08:47 +0000 |
commit | bdd8d7db74ad6927cd54f38c3e87246a36b2c319 (patch) | |
tree | 2b33c4d4b3ad41911276702eca711937b8e3c6ea /meta/recipes-devtools/gcc/gcc-4.9/0055-PR-rtl-optimization-61801.patch | |
parent | 178cacf6d8b664cce64c29117c30df4546e7c917 (diff) | |
download | openembedded-core-bdd8d7db74ad6927cd54f38c3e87246a36b2c319.tar.gz openembedded-core-bdd8d7db74ad6927cd54f38c3e87246a36b2c319.tar.bz2 openembedded-core-bdd8d7db74ad6927cd54f38c3e87246a36b2c319.zip |
gcc: Upgrade 4.9.1 -> 4.9.2
Delete backported patch which are present in 4.9.2
backport patched from upstream gcc trunk to fix
[YOCTO #6824]
Change-Id: Ia0067940471d4c5d9d62089bf6f18f3a9c2bfedd
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-4.9/0055-PR-rtl-optimization-61801.patch')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.9/0055-PR-rtl-optimization-61801.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.9/0055-PR-rtl-optimization-61801.patch b/meta/recipes-devtools/gcc/gcc-4.9/0055-PR-rtl-optimization-61801.patch deleted file mode 100644 index b27abdef38..0000000000 --- a/meta/recipes-devtools/gcc/gcc-4.9/0055-PR-rtl-optimization-61801.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 556537c4ad0df4cbebb74197bb2bdea75cf5dd35 Mon Sep 17 00:00:00 2001 -From: rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> -Date: Thu, 17 Jul 2014 07:48:49 +0000 -Subject: [PATCH] 2014-07-17 Richard Biener <rguenther@suse.de> - - PR rtl-optimization/61801 - * sched-deps.c (sched_analyze_2): For ASM_OPERANDS and - ASM_INPUT don't set reg_pending_barrier if it appears in a - debug-insn. - - -git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_9-branch@212739 138bc75d-0d04-0410-961f-82ee72b054a4 - -Upstream-Status: Backport [https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61801] -Signed-off-by: Peter A. Bigot <pab@pabigot.com> - ---- - gcc/sched-deps.c | 3 ++- - -diff --git a/gcc/sched-deps.c b/gcc/sched-deps.c -index efc4223..df29bd3 100644 ---- a/gcc/sched-deps.c -+++ b/gcc/sched-deps.c -@@ -2750,7 +2750,8 @@ sched_analyze_2 (struct deps_desc *deps, rtx x, rtx insn) - Consider for instance a volatile asm that changes the fpu rounding - mode. An insn should not be moved across this even if it only uses - pseudo-regs because it might give an incorrectly rounded result. */ -- if (code != ASM_OPERANDS || MEM_VOLATILE_P (x)) -+ if ((code != ASM_OPERANDS || MEM_VOLATILE_P (x)) -+ && !DEBUG_INSN_P (insn)) - reg_pending_barrier = TRUE_BARRIER; - - /* For all ASM_OPERANDS, we must traverse the vector of input operands. --- -1.8.5.5 - |