[OE-core] [PATCH] gcc: Backport nios2 gcc ICE fix

Khem Raj raj.khem at gmail.com
Tue May 24 13:26:13 UTC 2016


On Tue, May 24, 2016 at 4:06 PM, Marek Vasut <marex at denx.de> wrote:
> Backport a patch from mainline gcc 5 branch to fix ICE triggered
> when cross-compiling libdrm for nios2 architecture. The same ICE
> is fixed in gcc6 already.

This is ok

>
> Signed-off-by: Marek Vasut <marex at denx.de>
> Cc: Khem Raj <raj.khem at gmail.com>
> ---
>  meta/recipes-devtools/gcc/gcc-5.3.inc              |  1 +
>  .../0061-nios2-Make-assert-less-restrictive.patch  | 35 ++++++++++++++++++++++
>  2 files changed, 36 insertions(+)
>  create mode 100644 meta/recipes-devtools/gcc/gcc-5.3/0061-nios2-Make-assert-less-restrictive.patch
>
> diff --git a/meta/recipes-devtools/gcc/gcc-5.3.inc b/meta/recipes-devtools/gcc/gcc-5.3.inc
> index 5dd8022..c54fa68 100644
> --- a/meta/recipes-devtools/gcc/gcc-5.3.inc
> +++ b/meta/recipes-devtools/gcc/gcc-5.3.inc
> @@ -90,6 +90,7 @@ SRC_URI = "\
>             file://0058-fdebug-prefix-map-support-to-remap-relative-path.patch \
>             file://0059-libgcc-use-ldflags.patch \
>             file://0060-remove-prototypes-cfns.patch \
> +          file://0061-nios2-Make-assert-less-restrictive.patch \
>             file://CVE-2016-4488.patch \
>             file://CVE-2016-4489.patch \
>             file://CVE-2016-2226.patch \
> diff --git a/meta/recipes-devtools/gcc/gcc-5.3/0061-nios2-Make-assert-less-restrictive.patch b/meta/recipes-devtools/gcc/gcc-5.3/0061-nios2-Make-assert-less-restrictive.patch
> new file mode 100644
> index 0000000..6a20694
> --- /dev/null
> +++ b/meta/recipes-devtools/gcc/gcc-5.3/0061-nios2-Make-assert-less-restrictive.patch
> @@ -0,0 +1,35 @@
> +From 802c64857074cb7b002d91ce6352139c2353ca06 Mon Sep 17 00:00:00 2001
> +From: cltang <cltang at 138bc75d-0d04-0410-961f-82ee72b054a4>
> +Date: Sat, 21 May 2016 08:26:11 +0000
> +Subject: [PATCH] 2016-05-21  Chung-Lin Tang  <cltang at codesourcery.com>
> +
> +       Backport from mainline
> +       2015-06-29  Sandra Loosemore  <sandra at codesourcery.com>
> +
> +       * config/nios2/nios2.c (nios2_delegitimize_address): Make
> +       assert less restrictive.
> +
> +
> +
> +git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-5-branch@236555 138bc75d-0d04-0410-961f-82ee72b054a4
> +Upstream-Status: Backport (git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-5-branch@236555 138bc75d-0d04-0410-961f-82ee72b054a4)
> +---
> + gcc/config/nios2/nios2.c | 2 +-
> + 1 files changed, 1 insertions(+), 1 deletion(-)
> +
> +diff --git a/gcc/config/nios2/nios2.c b/gcc/config/nios2/nios2.c
> +index 7b6b389..3b22331 100644
> +--- a/gcc/config/nios2/nios2.c
> ++++ b/gcc/config/nios2/nios2.c
> +@@ -1930,7 +1930,7 @@ nios2_delegitimize_address (rtx x)
> +       case UNSPEC_LOAD_TLS_IE:
> +       case UNSPEC_ADD_TLS_LE:
> +         x = XVECEXP (XEXP (x, 0), 0, 0);
> +-        gcc_assert (GET_CODE (x) == SYMBOL_REF);
> ++        gcc_assert (CONSTANT_P (x));
> +         break;
> +       }
> +     }
> +--
> +2.8.1
> +
> --
> 2.7.0
>



More information about the Openembedded-core mailing list