diff options
author | Khem Raj <raj.khem@gmail.com> | 2013-06-27 08:38:37 -0700 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-06-27 09:55:58 -0700 |
commit | 040a55d0b730bf78aad0f51e0018faa88655e279 (patch) | |
tree | 9c94c8a0aaa5bf2f7d0eb1cb945b48adbd16e937 /meta/recipes-devtools/gcc/gcc-4.8 | |
parent | dede532a980b0fabf0beae4519b89ec74a1c2474 (diff) | |
download | openembedded-core-040a55d0b730bf78aad0f51e0018faa88655e279.tar.gz openembedded-core-040a55d0b730bf78aad0f51e0018faa88655e279.tar.bz2 openembedded-core-040a55d0b730bf78aad0f51e0018faa88655e279.zip |
gcc-4.8: Fix ICE on ppc/spe targets
Rename patches to make them easly to apply with git
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-4.8')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.8/0037-gcc-4.8-PR56797.patch (renamed from meta/recipes-devtools/gcc/gcc-4.8/gcc-4.8-PR56797.patch) | 0 | ||||
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.8/0038-gcc-4.8-build-args.patch (renamed from meta/recipes-devtools/gcc/gcc-4.8/gcc-4.8-build-args.patch) | 0 | ||||
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.8/0039-gcc-4.8-PR57717.patch | 23 |
3 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.8/gcc-4.8-PR56797.patch b/meta/recipes-devtools/gcc/gcc-4.8/0037-gcc-4.8-PR56797.patch index b5d7b864fd..b5d7b864fd 100644 --- a/meta/recipes-devtools/gcc/gcc-4.8/gcc-4.8-PR56797.patch +++ b/meta/recipes-devtools/gcc/gcc-4.8/0037-gcc-4.8-PR56797.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.8/gcc-4.8-build-args.patch b/meta/recipes-devtools/gcc/gcc-4.8/0038-gcc-4.8-build-args.patch index c27e009619..c27e009619 100644 --- a/meta/recipes-devtools/gcc/gcc-4.8/gcc-4.8-build-args.patch +++ b/meta/recipes-devtools/gcc/gcc-4.8/0038-gcc-4.8-build-args.patch diff --git a/meta/recipes-devtools/gcc/gcc-4.8/0039-gcc-4.8-PR57717.patch b/meta/recipes-devtools/gcc/gcc-4.8/0039-gcc-4.8-PR57717.patch new file mode 100644 index 0000000000..f983f70d02 --- /dev/null +++ b/meta/recipes-devtools/gcc/gcc-4.8/0039-gcc-4.8-PR57717.patch @@ -0,0 +1,23 @@ +This backports fix from http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57717 + +Upstream-Status: Backport +Signed-off-by: Khem Raj <raj.khem@gmail.com> + +Index: gcc-4.8.1/gcc/config/rs6000/rs6000.c +=================================================================== +--- gcc-4.8.1.orig/gcc/config/rs6000/rs6000.c 2013-05-09 18:54:06.000000000 -0700 ++++ gcc-4.8.1/gcc/config/rs6000/rs6000.c 2013-06-27 08:22:40.459021366 -0700 +@@ -5431,11 +5431,12 @@ + + case TFmode: + case TDmode: +- case TImode: + if (TARGET_E500_DOUBLE) + return (SPE_CONST_OFFSET_OK (offset) + && SPE_CONST_OFFSET_OK (offset + 8)); ++ /* Fall through. */ + ++ case TImode: + extra = 8; + if (!worst_case) + break; |