Skip to content
Snippets Groups Projects
Commit 99ea16b3 authored by Avi Kivity's avatar Avi Kivity
Browse files

x64: fix off-by-one in stack alignment

Harmless.
parent 36dc1d06
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,7 @@ stack_trampoline: # %rsi=arg, %rdi=func, %rdx=stack
.cfi_startproc simple
.cfi_def_cfa %rsp, 0
# align the stack at 16 bytes for sse
andq $-15, %rdx
andq $-16, %rdx
sub $8, %rdx
mov %rsp, -8(%rdx)
lea -8(%rdx), %rsp
......
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