From: Simon Marlow Date: Thu, 18 Jun 2009 11:26:16 +0000 (+0000) Subject: Add a comment to remind us that memcpy_src_off is used by dph X-Git-Tag: 2009-06-25~11 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=6c2c942696c3f71cb61598e8ea643ac4428e3e88;p=ghc-base.git Add a comment to remind us that memcpy_src_off is used by dph --- diff --git a/include/HsBase.h b/include/HsBase.h index f844bfd..6ed0faa 100644 --- a/include/HsBase.h +++ b/include/HsBase.h @@ -257,6 +257,7 @@ __hscore_sigismember( sigset_t * set, int s ) { return sigismember(set,s); } #endif +// This is used by dph:Data.Array.Parallel.Arr.BUArr, and shouldn't be INLINE void * __hscore_memcpy_dst_off( char *dst, int dst_off, char *src, size_t sz ) { return memcpy(dst+dst_off, src, sz); }