mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
Do not use ppc-specific long double pack/unpack when compiling with clang
This commit is contained in:
parent
c3064d5f50
commit
2c9e5207e4
@ -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>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user