mirror of
https://github.com/corda/corda.git
synced 2025-01-05 20:54:13 +00:00
Merge pull request #401 from dicej/master
align stack size for vmNativeCall to 16 on ARM
This commit is contained in:
commit
5def0e4658
@ -311,7 +311,7 @@ inline uint64_t dynamicCall(void* function,
|
||||
vfpIndex = VfpCount;
|
||||
}
|
||||
|
||||
unsigned stackSize = stackIndex * BytesPerWord + ((stackIndex & 1) << 2);
|
||||
unsigned stackSize = pad(stackIndex * BytesPerWord, 16);
|
||||
return vmNativeCall(function,
|
||||
stackSize,
|
||||
RUNTIME_ARRAY_BODY(stack),
|
||||
|
Loading…
Reference in New Issue
Block a user