diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-02-20 11:18:08 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-02-20 17:16:29 -0300 |
commit | 8b014a1b1f7aee1e3348db108aeea396359d481e (patch) | |
tree | 22e65645037c5ef560761062f08b0a3b75494dc5 /sysdeps/s390 | |
parent | 97830304bb477f18b67b7bc11989fb3357da443e (diff) | |
download | glibc-8b014a1b1f7aee1e3348db108aeea396359d481e.zip glibc-8b014a1b1f7aee1e3348db108aeea396359d481e.tar.gz glibc-8b014a1b1f7aee1e3348db108aeea396359d481e.tar.bz2 |
s390: Fix build for -march=z13
It fixes the build after 7ea510127e2067e and 22999b2f0fb62.
Checked with build for s390x-linux-gnu with -march=z13.
Reviewed-by: Arjun Shankar <arjun@redhat.com>
Diffstat (limited to 'sysdeps/s390')
-rw-r--r-- | sysdeps/s390/memrchr-vx.S | 1 | ||||
-rw-r--r-- | sysdeps/s390/strchrnul-vx.S | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/s390/memrchr-vx.S b/sysdeps/s390/memrchr-vx.S index c6c3168..4080dcc 100644 --- a/sysdeps/s390/memrchr-vx.S +++ b/sysdeps/s390/memrchr-vx.S @@ -161,6 +161,7 @@ ENTRY(MEMRCHR_Z13) END(MEMRCHR_Z13) # if ! HAVE_MEMRCHR_IFUNC +libc_hidden_def (__memrchr) strong_alias (MEMRCHR_Z13, __memrchr) weak_alias (__memrchr, memrchr) # endif diff --git a/sysdeps/s390/strchrnul-vx.S b/sysdeps/s390/strchrnul-vx.S index 07f3942..b705979 100644 --- a/sysdeps/s390/strchrnul-vx.S +++ b/sysdeps/s390/strchrnul-vx.S @@ -94,6 +94,7 @@ ENTRY(STRCHRNUL_Z13) END(STRCHRNUL_Z13) # if ! HAVE_STRCHRNUL_IFUNC +libc_hidden_def (__strchrnul) strong_alias (STRCHRNUL_Z13, __strchrnul) weak_alias (__strchrnul, strchrnul) # endif |