mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-14 01:00:07 +00:00
5ae4fe60e6
This patch removes a conditional on __GNUC_PREREQ (4, 6) in x86_64 code. Tested for x86_64 that installed shared libraries are unchanged by this patch. Committed (I think this file reasonably comes under math maintainership). * sysdeps/x86_64/fpu/dla.h [__FMA4__ && __GNUC_PREREQ (4, 6)] (DLA_FMS): Make definition conditional only on [__FMA4__]. [__FMA4__ && !__GNUC_PREREQ (4, 6)] (DLA_FMS): Remove conditional definition.
9 lines
142 B
C
9 lines
142 B
C
#include <features.h>
|
|
|
|
#ifdef __FMA4__
|
|
# define DLA_FMS(x,y,z) \
|
|
__builtin_fma (x, y, -(z))
|
|
#endif
|
|
|
|
#include "sysdeps/ieee754/dbl-64/dla.h"
|