diff options
Diffstat (limited to 'sysdeps/i386/strspn.S')
-rw-r--r-- | sysdeps/i386/strspn.S | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sysdeps/i386/strspn.S b/sysdeps/i386/strspn.S index decb9afdbc..9e95f23ab5 100644 --- a/sysdeps/i386/strspn.S +++ b/sysdeps/i386/strspn.S @@ -31,11 +31,9 @@ .text ENTRY (BP_SYM (strspn)) - ENTER movl STR(%esp), %edx movl SKIP(%esp), %eax - CHECK_BOUNDS_LOW (%edx, STR(%esp)) /* First we create a table with flags for all possible characters. For the ASCII (7bit/8bit) or ISO-8859-X character sets which are @@ -236,11 +234,9 @@ L(5): incl %eax L(4): addl $256, %esp /* remove stopset */ cfi_adjust_cfa_offset (-256) - CHECK_BOUNDS_HIGH (%eax, STR(%esp), jb) subl %edx, %eax /* we have to return the number of valid characters, so compute distance to first non-valid character */ - LEAVE ret END (BP_SYM (strspn)) libc_hidden_builtin_def (strspn) |