From: Adhemerval Zanella Date: Tue, 23 Dec 2025 17:31:06 +0000 (-0300) Subject: math: Fix powerpc64le -Os build after 6b7067460f X-Git-Tag: glibc-2.43~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e56b3faf8d73e0aa0c73ee55e1648a26b156a93f;p=thirdparty%2Fglibc.git math: Fix powerpc64le -Os build after 6b7067460f The __USE_EXTERN_INLINES is gated __OPTIMIZE_SIZE__, so also gated the alias required using the same logic. Reviewed-by: Carlos O'Donell --- diff --git a/sysdeps/ieee754/float128/s_fabsf128.c b/sysdeps/ieee754/float128/s_fabsf128.c index 9d64f15040..1e0ce65804 100644 --- a/sysdeps/ieee754/float128/s_fabsf128.c +++ b/sysdeps/ieee754/float128/s_fabsf128.c @@ -1,5 +1,5 @@ #include -#ifndef __USE_EXTERN_INLINES +#if !defined __USE_EXTERN_INLINES && !defined(__OPTIMIZE_SIZE__) # undef libm_alias_float128_r # define libm_alias_float128_r(from, to, r) \ static_weak_alias (from ## f128 ## r, to ## f128 ## r); \