summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/mpfr/mpfr/0001-Fix-obsolete-ARC-asm-constraints.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/mpfr/mpfr/0001-Fix-obsolete-ARC-asm-constraints.patch')
-rw-r--r--meta/recipes-support/mpfr/mpfr/0001-Fix-obsolete-ARC-asm-constraints.patch45
1 files changed, 45 insertions, 0 deletions
diff --git a/meta/recipes-support/mpfr/mpfr/0001-Fix-obsolete-ARC-asm-constraints.patch b/meta/recipes-support/mpfr/mpfr/0001-Fix-obsolete-ARC-asm-constraints.patch
new file mode 100644
index 0000000000..59d1b0db67
--- /dev/null
+++ b/meta/recipes-support/mpfr/mpfr/0001-Fix-obsolete-ARC-asm-constraints.patch
@@ -0,0 +1,45 @@
1mpfr-longlong.h: Fix obsolete ARC asm constraints
2
3This patch replaces obsolete ARC "J" asm constraint with
4up-to-date "Cal" constraint.
5
6"J" constraint only existed in pre-upstream GCC port for ARC.
7In current upstream port "Cal" constraint is used which leads
8to compile-time error.
9
10Proposed fix is known to work in Buildroot, Crosstool-NG etc.
11
12[1] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=09cb6a17e71bd40d2fbfaf82a1502fc210e33c87
13
14Signed-off-by: Claudiu Zissulescu <claziss@synopsys.com>
15Signed-off-by: Vlad Zakharov <vzakhar@synopsys.com>
16Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
17
18Upstream-Status: Backport [https://gforge.inria.fr/scm/viewvc.php/mpfr?view=revision&revision=13251]
19---
20Index: src/mpfr-longlong.h
21===================================================================
22--- a/src/mpfr-longlong.h (revision 10963)
23+++ b/src/mpfr-longlong.h (working copy)
24@@ -416,17 +416,17 @@
25 : "=r" (sh), \
26 "=&r" (sl) \
27 : "r" ((USItype) (ah)), \
28- "rIJ" ((USItype) (bh)), \
29+ "rICal" ((USItype) (bh)), \
30 "%r" ((USItype) (al)), \
31- "rIJ" ((USItype) (bl)))
32+ "rICal" ((USItype) (bl)))
33 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
34 __asm__ ("sub.f\t%1, %4, %5\n\tsbc\t%0, %2, %3" \
35 : "=r" (sh), \
36 "=&r" (sl) \
37 : "r" ((USItype) (ah)), \
38- "rIJ" ((USItype) (bh)), \
39+ "rICal" ((USItype) (bh)), \
40 "r" ((USItype) (al)), \
41- "rIJ" ((USItype) (bl)))
42+ "rICal" ((USItype) (bl)))
43 #endif
44
45 #if defined (__arm__) && (defined (__thumb2__) || !defined (__thumb__)) \