summaryrefslogtreecommitdiff
path: root/packages/gcc/7.2.0/0006-xtensa-fix-PR-target-82181.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2018-01-28 19:42:24 (GMT)
committerAlexey Neyman <stilor@att.net>2018-01-29 03:25:47 (GMT)
commit66ad1ff51411c24bfad7c1892f7481a9cdc924f8 (patch)
tree56ba7ceb17e192a9b3eafe01064aeb27f33ab033 /packages/gcc/7.2.0/0006-xtensa-fix-PR-target-82181.patch
parentba165ed4c0bfa8a83e61a2efd1ad205777978486 (diff)
Upgrade to new releases
android-ndk, binutils, gcc, linux, mpfr, ncurses, newlib, uclibc-ng MPC vs MPFR dependencies required modifications in auto-generated templates to also provide non-inclusive older-than/newer-than specifications. Also correct MPC URLs, the website seems to have adjusted its directory layout. Currently, newlib 3.0.0 doesn't build for arm-nano-eabi. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'packages/gcc/7.2.0/0006-xtensa-fix-PR-target-82181.patch')
-rw-r--r--packages/gcc/7.2.0/0006-xtensa-fix-PR-target-82181.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/packages/gcc/7.2.0/0006-xtensa-fix-PR-target-82181.patch b/packages/gcc/7.2.0/0006-xtensa-fix-PR-target-82181.patch
deleted file mode 100644
index ec9f1f8..0000000
--- a/packages/gcc/7.2.0/0006-xtensa-fix-PR-target-82181.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 3ed0c49a8d52e88648c7bb9f21a204b23595a6a9 Mon Sep 17 00:00:00 2001
-From: jcmvbkbc <jcmvbkbc@138bc75d-0d04-0410-961f-82ee72b054a4>
-Date: Mon, 11 Sep 2017 21:53:38 +0000
-Subject: [PATCH] xtensa: fix PR target/82181
-
-2017-09-11 Max Filippov <jcmvbkbc@gmail.com>
-gcc/
- Backport from mainline
- * config/xtensa/xtensa.c (xtensa_mem_offset): Check that both
- words of DImode object are reachable by xtensa_uimm8x4 access.
-
-Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
----
- gcc/config/xtensa/xtensa.c | 1 +
- 1 file changed, 1 insertion(+)
-
---- a/gcc/config/xtensa/xtensa.c
-+++ b/gcc/config/xtensa/xtensa.c
-@@ -605,6 +605,7 @@
- case HImode:
- return xtensa_uimm8x2 (v);
-
-+ case DImode:
- case DFmode:
- return (xtensa_uimm8x4 (v) && xtensa_uimm8x4 (v + 4));
-