diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-02-17 21:57:26 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-02-17 21:57:26 +0000 |
commit | 2969121014b150036551c93a09da7686ffcac817 (patch) | |
tree | 84709b44f2b9dcbbd8259a213bd0a598bb49490c /sysdeps/x86_64/strcat.S | |
parent | f238fd190bbfc57f5678ca5c5975b92bfb21e040 (diff) | |
download | glibc-2969121014b150036551c93a09da7686ffcac817.tar.gz glibc-2969121014b150036551c93a09da7686ffcac817.tar.xz glibc-2969121014b150036551c93a09da7686ffcac817.zip |
Remove bounded-pointers handling from x86_64 assembly sources.
Diffstat (limited to 'sysdeps/x86_64/strcat.S')
-rw-r--r-- | sysdeps/x86_64/strcat.S | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sysdeps/x86_64/strcat.S b/sysdeps/x86_64/strcat.S index d108750ce3..287ffd24c3 100644 --- a/sysdeps/x86_64/strcat.S +++ b/sysdeps/x86_64/strcat.S @@ -20,12 +20,10 @@ #include <sysdep.h> #include "asm-syntax.h" -#include "bp-sym.h" -#include "bp-asm.h" .text -ENTRY (BP_SYM (strcat)) +ENTRY (strcat) movq %rdi, %rcx /* Dest. register. */ andl $7, %ecx /* mask alignment bits */ movq %rdi, %rax /* Duplicate destination pointer. */ @@ -255,5 +253,5 @@ ENTRY (BP_SYM (strcat)) 24: movq %rdi, %rax /* Source is return value. */ retq -END (BP_SYM (strcat)) +END (strcat) libc_hidden_builtin_def (strcat) |