Skip to content
Snippets Groups Projects
Commit 884dce8e authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Merge branch 'fix_aarch64_sp_align' into 'master'

aarch64: align sp in _start

See merge request !412
parents d006b957 4cb564bc
No related branches found
No related tags found
1 merge request!412aarch64: align sp in _start
Pipeline #12527 passed
......@@ -11,6 +11,7 @@ global_asm!(
.globl _start
_start:
mov x0, sp
and sp, x0, #0xfffffffffffffff0 //align sp
bl relibc_start
"
);
......
......@@ -9,6 +9,7 @@ global_asm!(
.globl _start
_start:
mov x0, sp
and sp, x0, #0xfffffffffffffff0 //align sp
bl relibc_ld_so_start
# TODO: aarch64
udf #0
......
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