Added a tvOS target in Xcode project. Misc Xcode project cleanup.
Fix macOS build target in Xcode project.
# Conflicts:
# src/aarch64/ffi.c
# src/x86/ffi64.c
}
/* Round the stack up to a multiple of the stack alignment requirement. */
- cif->bytes = FFI_ALIGN(bytes, 16);
- cif->bytes = (unsigned) ALIGN(bytes, 16);
++ cif->bytes = (unsigned) FFI_ALIGN(bytes, 16);
cif->flags = flags;
#if defined (__APPLE__)
cif->aarch64_nfixedargs = 0;
flags |= UNIX64_FLAG_XMM_ARGS;
cif->flags = flags;
- cif->bytes = FFI_ALIGN (bytes, 8);
- cif->bytes = (unsigned) ALIGN (bytes, 8);
++ cif->bytes = (unsigned) FFI_ALIGN (bytes, 8);
return FFI_OK;
}