| Index: newlib/libc/string/memmove.c
|
| diff --git a/newlib/libc/string/memmove.c b/newlib/libc/string/memmove.c
|
| index 36b2068e6bb2704b1a65188b37a2cc2c97a65bdc..0203c808462600d16d876d5226fa313556157c6c 100644
|
| --- a/newlib/libc/string/memmove.c
|
| +++ b/newlib/libc/string/memmove.c
|
| @@ -37,9 +37,11 @@ QUICKREF
|
|
|
| /*
|
| * The body of this function should not appear in PNaCl bitcode.
|
| + * We use PNACL_BITCODE instead of __le32__ or __pnacl__ since this
|
| + * should also apply to biased bitcode.
|
| * See https://code.google.com/p/nativeclient/issues/detail?id=3493
|
| */
|
| -#ifndef __pnacl__
|
| +#ifndef PNACL_BITCODE
|
|
|
| #include <string.h>
|
| #include <_ansi.h>
|
| @@ -149,4 +151,4 @@ _DEFUN (memmove, (dst_void, src_void, length),
|
| #endif /* not PREFER_SIZE_OVER_SPEED */
|
| }
|
|
|
| -#endif /* __pnacl__ */
|
| +#endif /* PNACL_BITCODE */
|
|
|