Skip to content
Snippets Groups Projects
Commit b913c3f0 authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Tom Rini
Browse files

arm64: use xzr to zero-out the bss section


AArch64 has a zero register (xzr).  Use it instead of x2.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent 446d4e04
No related branches found
No related tags found
Loading
...@@ -117,9 +117,8 @@ relocation_return: ...@@ -117,9 +117,8 @@ 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! */
mov x2, #0
clear_loop: clear_loop:
str x2, [x0] str xzr, [x0]
add x0, x0, #8 add x0, x0, #8
cmp x0, x1 cmp x0, x1
b.lo clear_loop b.lo clear_loop
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment