Message ID | 20240522132115.596912-1-adhemerval.zanella@linaro.org |
---|---|
State | New |
Headers | show |
Series | loongarch: Remove duplicate strnlen in libc.a (BZ 31785) | expand |
On Wed, May 22, 2024 at 6:21 AM Adhemerval Zanella <adhemerval.zanella@linaro.org> wrote: > > The generic version provides weak definitions of strnlen, > which are already provided by the ifunc resolver. > --- > sysdeps/loongarch/lp64/multiarch/strnlen-aligned.S | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/sysdeps/loongarch/lp64/multiarch/strnlen-aligned.S b/sysdeps/loongarch/lp64/multiarch/strnlen-aligned.S > index 9826d21c2e..3606225ca2 100644 > --- a/sysdeps/loongarch/lp64/multiarch/strnlen-aligned.S > +++ b/sysdeps/loongarch/lp64/multiarch/strnlen-aligned.S > @@ -98,5 +98,7 @@ L(out): > jr ra > END(STRNLEN) > > +#if !IS_IN (libc) > weak_alias (STRNLEN, strnlen) > libc_hidden_builtin_def (STRNLEN) > +#endif > -- > 2.43.0 > LGTM. Reviewed-by: H.J. Lu <hjl.tools@gmail.com> Thanks.
diff --git a/sysdeps/loongarch/lp64/multiarch/strnlen-aligned.S b/sysdeps/loongarch/lp64/multiarch/strnlen-aligned.S index 9826d21c2e..3606225ca2 100644 --- a/sysdeps/loongarch/lp64/multiarch/strnlen-aligned.S +++ b/sysdeps/loongarch/lp64/multiarch/strnlen-aligned.S @@ -98,5 +98,7 @@ L(out): jr ra END(STRNLEN) +#if !IS_IN (libc) weak_alias (STRNLEN, strnlen) libc_hidden_builtin_def (STRNLEN) +#endif