mirror of
https://github.com/reactos/reactos.git
synced 2025-06-19 23:05:20 +00:00
[ASM x64] Fix usage of macro .allocstack
.allocstack only accepts one 'size' parameter."
This commit is contained in:
parent
a7cb59728d
commit
ae4ce99e00
3 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ MACRO(GENERATE_EXCEPTION_FRAME)
|
|||
/* Allocate a KEXCEPTION_FRAME on the stack */
|
||||
/* -8 because the last field is the return address */
|
||||
sub rsp, KEXCEPTION_FRAME_LENGTH - 8
|
||||
.allocstack KEXCEPTION_FRAME_LENGTH - 8
|
||||
.allocstack (KEXCEPTION_FRAME_LENGTH - 8)
|
||||
|
||||
/* Save non-volatiles in KEXCEPTION_FRAME */
|
||||
mov [rsp + ExRbp], rbp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue