 Chromium Code Reviews
 Chromium Code Reviews Issue 855013002:
  Make mem{cpy,move,set} pnacl bitcode disablement apply to biased bitcode.  (Closed) 
  Base URL: https://chromium.googlesource.com/native_client/nacl-newlib.git@master
    
  
    Issue 855013002:
  Make mem{cpy,move,set} pnacl bitcode disablement apply to biased bitcode.  (Closed) 
  Base URL: https://chromium.googlesource.com/native_client/nacl-newlib.git@master| Index: newlib/libc/string/memmove.c | 
| diff --git a/newlib/libc/string/memmove.c b/newlib/libc/string/memmove.c | 
| index 36b2068e6bb2704b1a65188b37a2cc2c97a65bdc..55aa3156048c511c3d021e527b996ad28a82a3c4 100644 | 
| --- a/newlib/libc/string/memmove.c | 
| +++ b/newlib/libc/string/memmove.c | 
| @@ -39,7 +39,7 @@ QUICKREF | 
| * The body of this function should not appear in PNaCl bitcode. | 
| 
Derek Schuff
2015/01/16 17:29:06
also add the same comment from the other file.
 
jvoung (off chromium)
2015/01/16 17:54:44
Done.
 | 
| * See https://code.google.com/p/nativeclient/issues/detail?id=3493 | 
| */ | 
| -#ifndef __pnacl__ | 
| +#ifndef PNACL_BITCODE | 
| #include <string.h> | 
| #include <_ansi.h> | 
| @@ -149,4 +149,4 @@ _DEFUN (memmove, (dst_void, src_void, length), | 
| #endif /* not PREFER_SIZE_OVER_SPEED */ | 
| } | 
| -#endif /* __pnacl__ */ | 
| +#endif /* PNACL_BITCODE */ |