diff options
author | Frédéric Bérat <fberat@redhat.com> | 2023-04-20 14:07:52 +0200 |
---|---|---|
committer | Frédéric Bérat <fberat@redhat.com> | 2023-07-05 16:59:48 +0200 |
commit | dd8486ffc195f5fe150b2d3724c7712686cfddb0 (patch) | |
tree | 8c6a24a94d1884b92f9b48536b39847110a23564 /sysdeps/i386/i586 | |
parent | ba96ff24b253d0321508b8b462103bbaa2975bb5 (diff) | |
download | glibc-dd8486ffc195f5fe150b2d3724c7712686cfddb0.tar.gz glibc-dd8486ffc195f5fe150b2d3724c7712686cfddb0.tar.xz glibc-dd8486ffc195f5fe150b2d3724c7712686cfddb0.zip |
string: Ensure *_chk routines have their hidden builtin definition available
If libc_hidden_builtin_{def,proto} isn't properly set for *_chk routines, there are unwanted PLT entries in libc.so. Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'sysdeps/i386/i586')
-rw-r--r-- | sysdeps/i386/i586/memcpy.S | 1 | ||||
-rw-r--r-- | sysdeps/i386/i586/memset.S | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/i386/i586/memcpy.S b/sysdeps/i386/i586/memcpy.S index 58061d5adf..e3405e577c 100644 --- a/sysdeps/i386/i586/memcpy.S +++ b/sysdeps/i386/i586/memcpy.S @@ -32,6 +32,7 @@ ENTRY (__memcpy_chk) cmpl %eax, 16(%esp) jb HIDDEN_JUMPTARGET (__chk_fail) END (__memcpy_chk) +libc_hidden_builtin_def (__memcpy_chk) #endif ENTRY (memcpy) diff --git a/sysdeps/i386/i586/memset.S b/sysdeps/i386/i586/memset.S index 413e8ec6a9..f1f0e1a99b 100644 --- a/sysdeps/i386/i586/memset.S +++ b/sysdeps/i386/i586/memset.S @@ -33,6 +33,7 @@ ENTRY (__memset_chk) cmpl %eax, 16(%esp) jb HIDDEN_JUMPTARGET (__chk_fail) END (__memset_chk) +libc_hidden_builtin_def (__memset_chk) #endif ENTRY (memset) |