]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
arm: Remove __builtin_arm_uqsub8 usage on string-fza.h
authorAdhemerval Zanella Netto <adhemerval.zanella@linaro.org>
Tue, 28 Feb 2023 18:23:25 +0000 (15:23 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 2 Mar 2023 19:41:43 +0000 (16:41 -0300)
The __builtin_arm_uqsub8 is an internal GCC builtin which might change
in future release (the correct way is to include "arm_acle.h" and use
__uqsub8 ()).  Since not all compilers support it, just use the
inline assembler instead.

Checked on armv7a-linux-gnueabihf.
Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
sysdeps/arm/armv6t2/string-fza.h

index d85ce86434b5dd077ea13fede42d924fd5cb3928..fb750119911f6512e26835e1ae93bc47641dae78 100644 (file)
@@ -33,13 +33,9 @@ find_zero_all (op_t x)
   /* Use unsigned saturated subtraction from 1 in each byte.
      That leaves 1 for every byte that was zero.  */
   op_t ones = repeat_bytes (0x01);
-#if __GNUC_PREREQ (10, 0)
-  return __builtin_arm_uqsub8 (ones, x);
-#else
   op_t ret;
   asm ("uqsub8 %0,%1,%2" : "=r"(ret) : "r"(ones), "r"(x));
   return ret;
-#endif
 }
 
 /* Identify bytes that are equal between X1 and X2.  */