mirror of git://sourceware.org/git/glibc.git
Correct prefetch hint in power7 memrchr.
Typo fix. * sysdeps/powerpc/powerpc64/power7/memrchr.S: Correct stream hint.
This commit is contained in:
parent
483818d768
commit
af6b17973c
|
@ -1,3 +1,7 @@
|
||||||
|
2014-04-02 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
* sysdeps/powerpc/powerpc64/power7/memrchr.S: Correct stream hint.
|
||||||
|
|
||||||
2014-04-02 Alan Modra <amodra@gmail.com>
|
2014-04-02 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
* sysdeps/powerpc/powerpc64/start.S: Add @toc to toc symbol reference.
|
* sysdeps/powerpc/powerpc64/start.S: Add @toc to toc symbol reference.
|
||||||
|
|
|
@ -29,7 +29,7 @@ ENTRY (__memrchr)
|
||||||
mr r10,r3
|
mr r10,r3
|
||||||
clrrdi r6,r7,7
|
clrrdi r6,r7,7
|
||||||
li r9,3<<5
|
li r9,3<<5
|
||||||
dcbt r9,r6,16 /* Stream hint, decreasing addresses. */
|
dcbt r9,r6,8 /* Stream hint, decreasing addresses. */
|
||||||
|
|
||||||
/* Replicate BYTE to doubleword. */
|
/* Replicate BYTE to doubleword. */
|
||||||
insrdi r4,r4,8,48
|
insrdi r4,r4,8,48
|
||||||
|
|
Loading…
Reference in New Issue