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/strtok.S | |
parent | f238fd190bbfc57f5678ca5c5975b92bfb21e040 (diff) | |
download | glibc-2969121014b150036551c93a09da7686ffcac817.tar glibc-2969121014b150036551c93a09da7686ffcac817.tar.gz glibc-2969121014b150036551c93a09da7686ffcac817.tar.bz2 glibc-2969121014b150036551c93a09da7686ffcac817.zip |
Remove bounded-pointers handling from x86_64 assembly sources.
Diffstat (limited to 'sysdeps/x86_64/strtok.S')
-rw-r--r-- | sysdeps/x86_64/strtok.S | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sysdeps/x86_64/strtok.S b/sysdeps/x86_64/strtok.S index 48c12cf0c3..5636d9a625 100644 --- a/sysdeps/x86_64/strtok.S +++ b/sysdeps/x86_64/strtok.S @@ -21,8 +21,6 @@ #include <sysdep.h> #include "asm-syntax.h" -#include "bp-sym.h" -#include "bp-asm.h" /* This file can be used for the strtok and strtok_r functions: @@ -59,7 +57,7 @@ save_ptr: #endif .text -ENTRY (BP_SYM (FUNCTION)) +ENTRY (FUNCTION) /* First we create a table with flags for all possible characters. For the ASCII (7bit/8bit) or ISO-8859-X character sets which are supported by the C string functions we have 256 characters. @@ -207,4 +205,4 @@ L(returnNULL): mov %RDX_LP, SAVE_PTR jmp L(epilogue) -END (BP_SYM (FUNCTION)) +END (FUNCTION) |