mirror of
https://github.com/corda/corda.git
synced 2025-01-07 05:28:51 +00:00
Merge pull request #255 from dicej/align
fix stack alignment bug in vmJumpAndInvoke
This commit is contained in:
commit
73912afaf7
@ -400,9 +400,10 @@ GLOBAL(vmJumpAndInvoke):
|
||||
|
||||
movl 12(%esp),%ecx
|
||||
|
||||
// allocate new frame, adding room for callee-saved registers
|
||||
// allocate new frame, adding room for callee-saved registers,
|
||||
// return address, and frame pointer
|
||||
subl 24(%esp),%ecx
|
||||
subl $CALLEE_SAVED_REGISTER_FOOTPRINT,%ecx
|
||||
subl $CALLEE_SAVED_REGISTER_FOOTPRINT+8,%ecx
|
||||
|
||||
movl 4(%esp),%ebx
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user