Skip to content

Commit

Permalink
Fix typo in last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Aug 27, 2010
1 parent 9ea3de1 commit 01d2601
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sysdeps/x86_64/strlen.S
Original file line number Diff line number Diff line change
Expand Up @@ -84,19 +84,19 @@ L(exit_less16):
L(exit16):
sub %rdi, %rax
bsf %rdx, %rdx
lea 16(%rdx), %rax
lea 16(%rdx,%rax), %rax
ret
.p2align 4
L(exit32):
sub %rdi, %rax
bsf %rdx, %rdx
lea 32(%rdx), %rax
lea 32(%rdx,%rax), %rax
ret
.p2align 4
L(exit48):
sub %rdi, %rax
bsf %rdx, %rdx
lea 48(%rdx), %rax
lea 48(%rdx,%rax), %rax
ret
END(strlen)
libc_hidden_builtin_def (strlen)

0 comments on commit 01d2601

Please sign in to comment.