From f933e32c1d658650e8d0f73bf2845e1550935982 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Thu, 15 Jan 2004 04:34:51 +0000 Subject: [PATCH] #if 0 out another block that doesn't compile (lack of intaligned() function prototype) This commit was SVN r406. --- src/mpi/datatype/datatype_sum32.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mpi/datatype/datatype_sum32.c b/src/mpi/datatype/datatype_sum32.c index 818d156ea7..6c4b13a5c1 100644 --- a/src/mpi/datatype/datatype_sum32.c +++ b/src/mpi/datatype/datatype_sum32.c @@ -340,6 +340,7 @@ void *lam_memcpy_sum32(void *restrict dst, state->partial_size = 0; state->partial_int = 0; } +#if 0 if (intaligned(q)) { for (i = 0; i < csumlenresidue / sizeof(uint32_t); i++) { csum += *q++; @@ -351,6 +352,7 @@ void *lam_memcpy_sum32(void *restrict dst, q++; } } +#endif csumlenresidue -= i * sizeof(uint32_t); if (csumlenresidue) { temp = 0;