Changeset 4850

Show
Ignore:
Timestamp:
06/29/09 14:22:28 (5 months ago)
Author:
buntinas
Message:

Remove restrict from memcpy implementation to quiet compiler warnings

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • mpich2/trunk/src/mpid/ch3/channels/nemesis/nemesis/include/mpid_nem_memdefs.h

    r4707 r4850  
    265265 
    266266#else 
    267 #define MPIU_Memcpy(dst, src, n) do { volatile void * restrict d = (dst); volatile const void *restrict s = (src); MPIUI_Memcpy((void *)d, (const void *)s, n); }while (0) 
     267/* #define MPIU_Memcpy(dst, src, n) do { volatile void * restrict d = (dst); volatile const void *restrict s = (src); MPIUI_Memcpy((void *)d, (const void *)s, n); }while (0) */ 
     268#define MPIU_Memcpy(dst, src, n) MPIUI_Memcpy(dst, src, n) 
    268269#endif 
    269270