From d4b7618db7dccdb0fabf7ed44e3b98ca5929e5af Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Thu, 29 Sep 2005 16:39:27 +0000 Subject: [PATCH] Comment out what seems to be a debugging output. Will confirm with George. This commit was SVN r7544. --- ompi/datatype/convertor.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ompi/datatype/convertor.c b/ompi/datatype/convertor.c index 5b141a8638..8db4b73676 100644 --- a/ompi/datatype/convertor.c +++ b/ompi/datatype/convertor.c @@ -200,10 +200,15 @@ int ompi_convertor_create_stack_at_begining( ompi_convertor_t* pConvertor, const if( pElems[index].elem.common.flags & DT_FLAG_DATA ) { /* let's stop here */ PUSH_STACK( pStack, pConvertor->stack_pos, index, pElems[index].elem.common.type, pElems[index].elem.count, pElems[index].elem.disp, 0 ); - } else { + } +#if 0 + /* JMS: Why is this here? Intel tests seem to pass even without + any further processing... */ + else { opal_output( 0, "Here we should have a data in the datatype description\n" ); ompi_ddt_dump( pConvertor->pDesc ); } +#endif pConvertor->bConverted = 0; return OMPI_SUCCESS; }