From: Stan Shebs Date: Wed, 26 Sep 2018 21:14:49 +0000 (-0700) Subject: Make xxland syntax gcc-only X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4b86f820b82dc9e55c689c4374d7f5a73cd5305c;p=thirdparty%2Fglibc.git Make xxland syntax gcc-only --- diff --git a/sysdeps/powerpc/fpu/s_float_bitwise.h b/sysdeps/powerpc/fpu/s_float_bitwise.h index 66086920966..6be2983d8e7 100644 --- a/sysdeps/powerpc/fpu/s_float_bitwise.h +++ b/sysdeps/powerpc/fpu/s_float_bitwise.h @@ -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;