align stack to 16 byte boundary on amd64

This commit is contained in:
Joel Dice 2007-12-17 19:08:17 -07:00
parent c483ca40aa
commit 2e33856d6b

View File

@ -27,6 +27,9 @@ vmNativeCall:
// reserve space for arguments passed via memory
subq %rdx,%rsp
// align to a 16 byte boundary
andq $0xFFFFFFFFFFFFFFF0,%rsp
// copy memory arguments into place
movq $0,%rcx