]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Make xxland syntax gcc-only
authorStan Shebs <stanshebs@google.com>
Wed, 26 Sep 2018 21:14:49 +0000 (14:14 -0700)
committerFangrui Song <i@maskray.me>
Sat, 28 Aug 2021 00:23:14 +0000 (17:23 -0700)
sysdeps/powerpc/fpu/s_float_bitwise.h

index 660869209669c752a3b06aa21066bdc567f6bc2d..6be2983d8e7b73314dc27ca349b48180d53c81e5 100644 (file)
@@ -27,7 +27,7 @@ static inline int
 __float_and_test28 (float num, float value)
 {
   float ret;
-#ifdef _ARCH_PWR7
+#if defined _ARCH_PWR7 && !defined __clang__
   union {
     int i;
     float f;
@@ -51,7 +51,7 @@ static inline int
 __float_and_test24 (float num, float value)
 {
   float ret;
-#ifdef _ARCH_PWR7
+#if defined _ARCH_PWR7 && !defined __clang__
   union {
     int i;
     float f;
@@ -73,7 +73,7 @@ static inline float
 __float_and8 (float num)
 {
   float ret;
-#ifdef _ARCH_PWR7
+#if defined _ARCH_PWR7 && !defined __clang__
   union {
     int i;
     float f;
@@ -95,7 +95,7 @@ static inline int32_t
 __float_get_exp (float num)
 {
   int32_t inum;
-#ifdef _ARCH_PWR7
+#if defined _ARCH_PWR7 && !defined __clang__
   float ret;
   union {
     int i;