Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Unified Diff: newlib/libc/string/memset.c

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
Patch Set: add comment Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« newlib/libc/string/memmove.c ('K') | « newlib/libc/string/memmove.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: newlib/libc/string/memset.c
diff --git a/newlib/libc/string/memset.c b/newlib/libc/string/memset.c
index b05af2090da4a6c39ec27a2a2647f40863378050..6f7c0f115ccb8cff3cf725a69d5f3bcec40de1cc 100644
--- a/newlib/libc/string/memset.c
+++ b/newlib/libc/string/memset.c
@@ -37,7 +37,7 @@ QUICKREF
* The body of this function should not appear in PNaCl bitcode.
Derek Schuff 2015/01/16 17:29:06 same
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 "local.h"
@@ -109,4 +109,4 @@ _DEFUN (memset, (m, c, n),
return m;
}
-#endif /* __pnacl__ */
+#endif /* PNACL_BITCODE */
« newlib/libc/string/memmove.c ('K') | « newlib/libc/string/memmove.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698