Commit 8ee30e6d authored by Alexandre Julliard's avatar Alexandre Julliard

winebuild: Fix 64-bit argument alignment on ARM.

parent 11c6b376
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment