diff options
author | Paul E. Murphy <murphyp@linux.vnet.ibm.com> | 2020-03-31 16:19:00 -0500 |
---|---|---|
committer | Paul E. Murphy <murphyp@linux.vnet.ibm.com> | 2020-04-06 10:23:58 -0500 |
commit | 25ee3931f03cae31f5006c438d939544f717666a (patch) | |
tree | a6f119740f2384571ecdaa19fef8a218f04ef710 /sysdeps | |
parent | bd98471eb2e242a0e5507e325e52ca998cf77865 (diff) | |
download | glibc-25ee3931f03cae31f5006c438d939544f717666a.zip glibc-25ee3931f03cae31f5006c438d939544f717666a.tar.gz glibc-25ee3931f03cae31f5006c438d939544f717666a.tar.bz2 |
powerpc64le/multiarch: don't generate strong aliases for fmaf128-ppc64
This prevents generating a second alias for __fmaieee128 when
compiling with ldouble == ieee128 redirects.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/powerpc/powerpc64/le/fpu/multiarch/s_fmaf128-ppc64.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/powerpc/powerpc64/le/fpu/multiarch/s_fmaf128-ppc64.c b/sysdeps/powerpc/powerpc64/le/fpu/multiarch/s_fmaf128-ppc64.c index 7374a79..ab0c4d0 100644 --- a/sysdeps/powerpc/powerpc64/le/fpu/multiarch/s_fmaf128-ppc64.c +++ b/sysdeps/powerpc/powerpc64/le/fpu/multiarch/s_fmaf128-ppc64.c @@ -18,6 +18,8 @@ #undef weak_alias #define weak_alias(a, b) +#undef strong_alias +#define strong_alias(a, b) #define __fmaf128 __fmaf128_ppc64 |