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

Unified Diff: src/trusted/validator/driver/ncval.cc

Issue 11000033: Move validator_x86_XX.rl out of unreviewed. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 7 years, 9 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
« no previous file with comments | « no previous file | src/trusted/validator/x86/testing/enuminsts/ragel_tester.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator/driver/ncval.cc
===================================================================
--- src/trusted/validator/driver/ncval.cc (revision 11037)
+++ src/trusted/validator/driver/ncval.cc (working copy)
@@ -159,13 +159,13 @@
errors.push_back(Error(offset, "error - %r15 is changed"));
}
- if (validation_info & BPL_MODIFIED) {
- validation_info &= ~BPL_MODIFIED;
+ if (validation_info & BP_MODIFIED) {
+ validation_info &= ~BP_MODIFIED;
errors.push_back(Error(offset, "error - %bpl or %bp is changed"));
}
- if (validation_info & SPL_MODIFIED) {
- validation_info &= ~SPL_MODIFIED;
+ if (validation_info & SP_MODIFIED) {
+ validation_info &= ~SP_MODIFIED;
errors.push_back(Error(offset, "error - %spl or %sp is changed"));
}
« no previous file with comments | « no previous file | src/trusted/validator/x86/testing/enuminsts/ragel_tester.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698