Do not use ppc-specific long double pack/unpack when compiling with clang

This commit is contained in:
Stan Shebs 2020-06-09 10:05:56 -07:00 committed by Fangrui Song
parent c3064d5f50
commit 2c9e5207e4

View File

@ -47,8 +47,13 @@ ldbl_unpack_ppc (long double l, double *a, double *aa)
*aa = xl;
}
/* These inline functions do not work with clang at all; drop back to the
default versions. (The defaults are not inlined by clang either, but they
return correct values at least.)*/
#if !defined __clang__
#define ldbl_pack ldbl_pack_ppc
#define ldbl_unpack ldbl_unpack_ppc
#endif /* !__clang__ */
#include <sysdeps/ieee754/ldbl-128ibm/math_ldbl.h>