summaryrefslogtreecommitdiff
path: root/tests/checkasm/aarch64
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-03-23 17:35:38 -0300
committerJames Almer <jamrial@gmail.com>2017-03-23 17:35:38 -0300
commitcab4c7fa199fe98db2b298d64eb6cfa386dae939 (patch)
tree4c18a7b0994bfa5cae6a88bbe038a2ab69a03a8a /tests/checkasm/aarch64
parent1c193ac1f9cfe703d6a1c36795f309ba5d14bf6e (diff)
parenta05cc56124b4f1237f6355784de821e3290ddb44 (diff)
Merge commit 'a05cc56124b4f1237f6355784de821e3290ddb44'
* commit 'a05cc56124b4f1237f6355784de821e3290ddb44': checkasm: arm/aarch64: Fix the amount of space reserved for stack parameters Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests/checkasm/aarch64')
-rw-r--r--tests/checkasm/aarch64/checkasm.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/checkasm/aarch64/checkasm.S b/tests/checkasm/aarch64/checkasm.S
index 6317d80611..f0a671e58d 100644
--- a/tests/checkasm/aarch64/checkasm.S
+++ b/tests/checkasm/aarch64/checkasm.S
@@ -52,7 +52,7 @@ endconst
// max number of args used by any asm function.
#define MAX_ARGS 15
-#define ARG_STACK ((8*(MAX_ARGS - 7) + 15) & ~15)
+#define ARG_STACK ((8*(MAX_ARGS - 8) + 15) & ~15)
function checkasm_checked_call, export=1
stp x29, x30, [sp, #-16]!
@@ -81,7 +81,7 @@ function checkasm_checked_call, export=1
sub sp, sp, #ARG_STACK
.equ pos, 0
// the first stacked arg is copied to x7
-.rept MAX_ARGS-7
+.rept MAX_ARGS-8
ldr x9, [x29, #16 + 8 + pos]
str x9, [sp, #pos]
.equ pos, pos + 8