diff options
| -rw-r--r-- | meta/recipes-devtools/gcc/gcc-7.3.inc | 1 | ||||
| -rw-r--r-- | meta/recipes-devtools/gcc/gcc-7.3/0001-Fix-ppc64le-build-Partial-backport-r256656.patch | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-7.3.inc b/meta/recipes-devtools/gcc/gcc-7.3.inc index b816f7d12f..81320dc52a 100644 --- a/meta/recipes-devtools/gcc/gcc-7.3.inc +++ b/meta/recipes-devtools/gcc/gcc-7.3.inc | |||
| @@ -79,6 +79,7 @@ SRC_URI = "\ | |||
| 79 | BACKPORTS = "\ | 79 | BACKPORTS = "\ |
| 80 | file://0001-Fix-internal-compiler-error-in-testcase.patch \ | 80 | file://0001-Fix-internal-compiler-error-in-testcase.patch \ |
| 81 | file://0001-PR-rtl-optimization-83030.patch \ | 81 | file://0001-PR-rtl-optimization-83030.patch \ |
| 82 | file://0001-Fix-ppc64le-build-Partial-backport-r256656.patch \ | ||
| 82 | " | 83 | " |
| 83 | 84 | ||
| 84 | SRC_URI[md5sum] = "be2da21680f27624f3a87055c4ba5af2" | 85 | SRC_URI[md5sum] = "be2da21680f27624f3a87055c4ba5af2" |
diff --git a/meta/recipes-devtools/gcc/gcc-7.3/0001-Fix-ppc64le-build-Partial-backport-r256656.patch b/meta/recipes-devtools/gcc/gcc-7.3/0001-Fix-ppc64le-build-Partial-backport-r256656.patch new file mode 100644 index 0000000000..cfb70e1ecd --- /dev/null +++ b/meta/recipes-devtools/gcc/gcc-7.3/0001-Fix-ppc64le-build-Partial-backport-r256656.patch | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | From aa65a43516da1d48011ef621ed5988289711d99b Mon Sep 17 00:00:00 2001 | ||
| 2 | From: marxin <marxin@138bc75d-0d04-0410-961f-82ee72b054a4> | ||
| 3 | Date: Fri, 29 Jun 2018 09:31:30 +0000 | ||
| 4 | Subject: [PATCH] Partial backport r256656 | ||
| 5 | |||
| 6 | 2018-06-29 Martin Liska <mliska@suse.cz> | ||
| 7 | |||
| 8 | Backport from mainline | ||
| 9 | 2018-01-10 Kelvin Nilsen <kelvin@gcc.gnu.org> | ||
| 10 | |||
| 11 | * lex.c (search_line_fast): Remove illegal coercion of an | ||
| 12 | unaligned pointer value to vector pointer type and replace with | ||
| 13 | use of __builtin_vec_vsx_ld () built-in function, which operates | ||
| 14 | on unaligned pointer values. | ||
| 15 | |||
| 16 | Upstream-Status: Backport | ||
| 17 | Signed-off-by: Joel Stanley <joel@jms.id.au> | ||
| 18 | --- | ||
| 19 | libcpp/lex.c | 2 +- | ||
| 20 | 1 files changed, 1 insertions(+), 1 deletion(-) | ||
| 21 | |||
| 22 | diff --git a/libcpp/lex.c b/libcpp/lex.c | ||
| 23 | index 097c78002cbb..e0fb9e822c44 100644 | ||
| 24 | --- a/libcpp/lex.c | ||
| 25 | +++ b/libcpp/lex.c | ||
| 26 | @@ -568,7 +568,7 @@ search_line_fast (const uchar *s, const uchar *end ATTRIBUTE_UNUSED) | ||
| 27 | { | ||
| 28 | vc m_nl, m_cr, m_bs, m_qm; | ||
| 29 | |||
| 30 | - data = *((const vc *)s); | ||
| 31 | + data = __builtin_vec_vsx_ld (0, s); | ||
| 32 | s += 16; | ||
| 33 | |||
| 34 | m_nl = (vc) __builtin_vec_cmpeq(data, repl_nl); | ||
| 35 | -- | ||
| 36 | 2.17.1 | ||
| 37 | |||
