winebuild: Fix 64-bit argument alignment on ARM.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2021-08-25 15:14:11 +02:00
parent 11c6b376c0
commit 8ee30e6dcc
1 changed files with 1 additions and 0 deletions

View File

@ -1144,6 +1144,7 @@ unsigned int get_args_size( const ORDDEF *odp )
{
case ARG_INT64:
case ARG_DOUBLE:
if (target_cpu == CPU_ARM) size = (size + 7) & ~7;
size += 8;
break;
case ARG_INT128: