mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
sparc: Fix broken memset for sparc32 [BZ #31068]
Fixes commit a61933fe27
("sparc: Remove bzero optimization") that
after moving code jumped to the wrong label 4.
Verfied by successfully running string/test-memset on sparc32.
Signed-off-by: Andreas Larsson <andreas@gaisler.com>
Signed-off-by: Ludwig Rydberg <ludwig.rydberg@gaisler.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
This commit is contained in:
parent
baea60b33e
commit
578190b7e4
1 changed files with 2 additions and 2 deletions
|
@ -55,7 +55,7 @@ ENTRY(memset)
|
|||
|
||||
andcc %o0, 3, %o2
|
||||
bne 3f
|
||||
4: andcc %o0, 4, %g0
|
||||
5: andcc %o0, 4, %g0
|
||||
|
||||
be 2f
|
||||
mov %g3, %g2
|
||||
|
@ -139,7 +139,7 @@ ENTRY(memset)
|
|||
stb %g3, [%o0 + 0x02]
|
||||
2: sub %o2, 4, %o2
|
||||
add %o1, %o2, %o1
|
||||
b 4b
|
||||
b 5b
|
||||
sub %o0, %o2, %o0
|
||||
END(memset)
|
||||
libc_hidden_builtin_def (memset)
|
||||
|
|
Loading…
Add table
Reference in a new issue