]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
build: fix factor build failure on aarch64
authorTorbjörn Granlund <tg@gmplib.org>
Mon, 4 Mar 2013 17:57:33 +0000 (17:57 +0000)
committerPádraig Brady <P@draigBrady.com>
Mon, 4 Mar 2013 18:09:49 +0000 (18:09 +0000)
* src/longlong.h (__aarch64__): Make add_ssaaaa and sub_ddmmss work.
* NEWS: Mention the build fix.
Reported at https://bugzilla.redhat.com/917735

NEWS
src/longlong.h

diff --git a/NEWS b/NEWS
index 5b28c921fb451d44f8dee39d8dfbd030d10c1747..e0cc08a2e997c832731ec6dee6a7f9ab5d418ad7 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -18,6 +18,10 @@ GNU coreutils NEWS                                    -*- outline -*-
   uniq accepts a new option: --group to print all items, while separating
   unique groups with empty lines.
 
+** Build-related
+
+  factor now builds on aarch64 based systems [bug introduced in coreutils-8.20]
+
 
 * Noteworthy changes in release 8.21 (2013-02-14) [stable]
 
index 46816429735e206920b1fe4aff66e3e7e6c63cd9..eba241762bfb39d751dbda1ae10b23ab6833a602 100644 (file)
@@ -529,23 +529,16 @@ extern UWtype __MPN(udiv_qrnnd) (UWtype *, UWtype, UWtype, UWtype);
 #endif /* __arm__ */
 
 #if defined (__aarch64__) && W_TYPE_SIZE == 64
+/* FIXME: Extend the immediate range for the low word by using both
+   ADDS and SUBS, since they set carry in the same way.  */
 #define add_ssaaaa(sh, sl, ah, al, bh, bl) \
-  __asm__ ("adds\t%1, %4, %5\n\tadc\t%0, %2, %3"                       \
+  __asm__ ("adds\t%1, %x4, %5\n\tadc\t%0, %x2, %x3"                     \
           : "=r" (sh), "=&r" (sl)                                      \
-          : "r" (ah), "rZ" (bh), "%r" (al), "rI" (bl) __CLOBBER_CC)
+           : "rZ" (ah), "rZ" (bh), "%r" (al), "rI" (bl) __CLOBBER_CC)
 #define sub_ddmmss(sh, sl, ah, al, bh, bl) \
-  do {                                                                 \
-    if (__builtin_constant_p (bl))                                     \
-      {                                                                        \
-       __asm__ ("subs\t%1, %4, %5\n\tsbc\t%0, %2, %3"                  \
-                : "=r" (sh), "=&r" (sl)                                \
-                : "r" (ah), "r" (bh), "r" (al), "rI" (bl) __CLOBBER_CC); \
-      }                                                                        \
-    else /* only bh might be a constant */                             \
-      __asm__ ("subs\t%1, %4, %5\n\tsbc\t%0, %2, %3"                   \
-              : "=r" (sh), "=&r" (sl)                                  \
-              : "r" (ah), "rZ" (bh), "r" (al), "rI" (bl) __CLOBBER_CC);\
-    } while (0)
+  __asm__ ("subs\t%1, %x4, %5\n\tsbc\t%0, %x2, %x3"                     \
+           : "=r,r" (sh), "=&r,&r" (sl)                                 \
+           : "rZ,rZ" (ah), "rZ,rZ" (bh), "r,Z" (al), "rI,r" (bl) __CLOBBER_CC)
 #define umul_ppmm(ph, pl, m0, m1) \
   do {                                                                 \
     UDItype __m0 = (m0), __m1 = (m1);                                  \