aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/x86_64/rtld-strchr.S
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-02-17 21:57:26 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-02-17 21:57:26 +0000
commit2969121014b150036551c93a09da7686ffcac817 (patch)
tree84709b44f2b9dcbbd8259a213bd0a598bb49490c /sysdeps/x86_64/rtld-strchr.S
parentf238fd190bbfc57f5678ca5c5975b92bfb21e040 (diff)
downloadglibc-2969121014b150036551c93a09da7686ffcac817.zip
glibc-2969121014b150036551c93a09da7686ffcac817.tar.gz
glibc-2969121014b150036551c93a09da7686ffcac817.tar.bz2
Remove bounded-pointers handling from x86_64 assembly sources.
Diffstat (limited to 'sysdeps/x86_64/rtld-strchr.S')
-rw-r--r--sysdeps/x86_64/rtld-strchr.S8
1 files changed, 3 insertions, 5 deletions
diff --git a/sysdeps/x86_64/rtld-strchr.S b/sysdeps/x86_64/rtld-strchr.S
index 37858d1..323da67 100644
--- a/sysdeps/x86_64/rtld-strchr.S
+++ b/sysdeps/x86_64/rtld-strchr.S
@@ -19,12 +19,10 @@
#include <sysdep.h>
#include "asm-syntax.h"
-#include "bp-sym.h"
-#include "bp-asm.h"
.text
-ENTRY (BP_SYM (strchr))
+ENTRY (strchr)
/* Before we start with the main loop we process single bytes
until the source pointer is aligned. This has two reasons:
@@ -284,7 +282,7 @@ ENTRY (BP_SYM (strchr))
6:
nop
retq
-END (BP_SYM (strchr))
+END (strchr)
-weak_alias (BP_SYM (strchr), BP_SYM (index))
+weak_alias (strchr, index)
libc_hidden_builtin_def (strchr)