aarch64: Fix a name mismatch in a macro error message

For the 64 bit assembly, the macro is just named "sub_sp", while it
was named "sub_sp_align" in the 32 bit form.
This commit is contained in:
Martin Storsjö
2026-05-15 14:24:57 +03:00
parent 1cfad6dbca
commit c85856e360
+1 -1
View File
@@ -72,7 +72,7 @@
.if \space > 8192
// Here, we'd need to touch two (or more) pages while decrementing
// the stack pointer.
.error "sub_sp_align doesn't support values over 8K at the moment"
.error "sub_sp doesn't support values over 8K at the moment"
.elseif \space > 4096
sub x16, sp, #4096
ldr xzr, [x16]