diff options
| -rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.8.inc | 1 | ||||
| -rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.8/0045-gcc-4.8-PR57717-PowerPC-E500v2.patch | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.8.inc b/meta/recipes-devtools/gcc/gcc-4.8.inc index 39f323d87e..0fbbc1d9bc 100644 --- a/meta/recipes-devtools/gcc/gcc-4.8.inc +++ b/meta/recipes-devtools/gcc/gcc-4.8.inc | |||
| @@ -74,6 +74,7 @@ SRC_URI = "${GNU_MIRROR}/gcc/gcc-${PV}/gcc-${PV}.tar.bz2 \ | |||
| 74 | file://0042-pr57748.patch \ | 74 | file://0042-pr57748.patch \ |
| 75 | file://0043-cpp.patch \ | 75 | file://0043-cpp.patch \ |
| 76 | file://0044-gengtypes.patch \ | 76 | file://0044-gengtypes.patch \ |
| 77 | file://0045-gcc-4.8-PR57717-PowerPC-E500v2.patch \ | ||
| 77 | " | 78 | " |
| 78 | SRC_URI[md5sum] = "3b2386c114cd74185aa3754b58a79304" | 79 | SRC_URI[md5sum] = "3b2386c114cd74185aa3754b58a79304" |
| 79 | SRC_URI[sha256sum] = "545b44be3ad9f2c4e90e6880f5c9d4f0a8f0e5f67e1ffb0d45da9fa01bb05813" | 80 | SRC_URI[sha256sum] = "545b44be3ad9f2c4e90e6880f5c9d4f0a8f0e5f67e1ffb0d45da9fa01bb05813" |
diff --git a/meta/recipes-devtools/gcc/gcc-4.8/0045-gcc-4.8-PR57717-PowerPC-E500v2.patch b/meta/recipes-devtools/gcc/gcc-4.8/0045-gcc-4.8-PR57717-PowerPC-E500v2.patch new file mode 100644 index 0000000000..96fa1da073 --- /dev/null +++ b/meta/recipes-devtools/gcc/gcc-4.8/0045-gcc-4.8-PR57717-PowerPC-E500v2.patch | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | This backports fix from http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57717 | ||
| 2 | |||
| 3 | Upstream-Status: Backport | ||
| 4 | Signed-off-by: Julian Brown <Julian_Brown@mentor.com> | ||
| 5 | |||
| 6 | fix for PR57717 (PowerPC E500v2) | ||
| 7 | http://gcc.gnu.org/ml/gcc-patches/2013-08/msg00668.html | ||
| 8 | |||
| 9 | --- a/gcc/config/rs6000/rs6000.c 2013-05-09 20:54:06.000000000 -0500 | ||
| 10 | +++ b/gcc/config/rs6000/rs6000.c 2013-08-28 01:25:24.865218744 -0500 | ||
| 11 | @@ -6337,9 +6337,7 @@ | ||
| 12 | && GET_CODE (XEXP (x, 1)) == CONST_INT | ||
| 13 | && reg_offset_p | ||
| 14 | && !SPE_VECTOR_MODE (mode) | ||
| 15 | - && !(TARGET_E500_DOUBLE && (mode == DFmode || mode == TFmode | ||
| 16 | - || mode == DDmode || mode == TDmode | ||
| 17 | - || mode == DImode)) | ||
| 18 | + && !(TARGET_E500_DOUBLE && GET_MODE_SIZE (mode) > UNITS_PER_WORD) | ||
| 19 | && VECTOR_MEM_NONE_P (mode)) | ||
| 20 | { | ||
| 21 | HOST_WIDE_INT val = INTVAL (XEXP (x, 1)); | ||
