spack/var/spack/repos/builtin/packages/mpich/mpich32_clang.patch
Denis Davydov bb29ec1843 mpich: fix MPI_Barrier segfault (#5235)
* mpich: fix MPI_Barrier segfault

* one more link
2017-08-30 18:58:23 -05:00

14 lines
438 B
Diff

diff --git a/src/include/mpiimpl.h b/src/include/mpiimpl.h
index e705e5d..3bfcbee 100644
--- a/src/include/mpiimpl.h
+++ b/src/include/mpiimpl.h
@@ -1528,7 +1528,7 @@ typedef struct MPID_Request {
#ifdef MPID_DEV_REQUEST_DECL
MPID_DEV_REQUEST_DECL
#endif
-} MPID_Request ATTRIBUTE((__aligned__(32)));
+} ATTRIBUTE((__aligned__(32))) MPID_Request;
extern MPIU_Object_alloc_t MPID_Request_mem;
/* Preallocated request objects */