Skip to content

Commit

Permalink
Support __memmove_ssse3_rep when SHARED isn't defined.
Browse files Browse the repository at this point in the history
  • Loading branch information
H.J. Lu authored and Ulrich Drepper committed Jan 19, 2010
1 parent a7bbf3d commit cff0be8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2010-01-19 H.J. Lu <hongjiu.lu@intel.com>

* sysdeps/i386/i686/multiarch/memmove.S: Also check
bit_Fast_Rep_String when SHARED isn't defined.

2010-01-19 Ulrich Drepper <drepper@redhat.com>

[BZ #11194]
Expand Down
3 changes: 3 additions & 0 deletions sysdeps/i386/i686/multiarch/memmove.S
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ ENTRY(memmove)
testl $bit_SSSE3, CPUID_OFFSET+index_SSSE3+__cpu_features
jz 2f
leal __memmove_ssse3, %eax
testl $bit_Fast_Rep_String, FEATURE_OFFSET+index_Fast_Rep_String+__cpu_features
jz 2f
leal __memmove_ssse3_rep, %eax
2: ret
END(memmove)

Expand Down

0 comments on commit cff0be8

Please sign in to comment.