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

Unified Diff: src/trusted/validator_ragel/unreviewed/validator_test.c

Issue 10883051: Add documentation for the dynamic code modifications. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 4 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
Index: src/trusted/validator_ragel/unreviewed/validator_test.c
===================================================================
--- src/trusted/validator_ragel/unreviewed/validator_test.c (revision 9570)
+++ src/trusted/validator_ragel/unreviewed/validator_test.c (working copy)
@@ -113,7 +113,7 @@
printf("offset 0x%"NACL_PRIxS": warning - bad call alignment\n", offset);
if (validation_error & BAD_JUMP_TARGET)
printf("bad jump to around 0x%"NACL_PRIxS"\n", offset);
- if (validation_error & (VALIDATION_ERRORS | BAD_JUMP_TARGET))
+ if (validation_error & (VALIDATION_ERRORS_MASK | BAD_JUMP_TARGET))
return FALSE;
else
return TRUE;

Powered by Google App Engine
This is Rietveld 408576698