mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
arm64: use store with auto-increment
Save one instruction. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
committed by
Tom Rini
parent
b913c3f079
commit
07a63c7e7d
@@ -118,8 +118,7 @@ relocation_return:
|
|||||||
ldr x0, =__bss_start /* this is auto-relocated! */
|
ldr x0, =__bss_start /* this is auto-relocated! */
|
||||||
ldr x1, =__bss_end /* this is auto-relocated! */
|
ldr x1, =__bss_end /* this is auto-relocated! */
|
||||||
clear_loop:
|
clear_loop:
|
||||||
str xzr, [x0]
|
str xzr, [x0], #8
|
||||||
add x0, x0, #8
|
|
||||||
cmp x0, x1
|
cmp x0, x1
|
||||||
b.lo clear_loop
|
b.lo clear_loop
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user