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

Unified Diff: src/trusted/validator_ragel/unreviewed/validator_x86_64.rl

Issue 10860010: Fix uint8_t/unit32_t mix, always use wordsize access (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
« no previous file with comments | « src/trusted/validator_ragel/unreviewed/validator_x86_32.rl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator_ragel/unreviewed/validator_x86_64.rl
===================================================================
--- src/trusted/validator_ragel/unreviewed/validator_x86_64.rl (revision 9487)
+++ src/trusted/validator_ragel/unreviewed/validator_x86_64.rl (working copy)
@@ -311,8 +311,8 @@
const NaClCPUFeaturesX86 *cpu_features,
validation_callback_func user_callback,
void *callback_data) {
- uint8_t *valid_targets = BitmapAllocate(size);
- uint8_t *jump_dests = BitmapAllocate(size);
+ bitmap_word *valid_targets = BitmapAllocate(size);
+ bitmap_word *jump_dests = BitmapAllocate(size);
const uint8_t *current_position;
const uint8_t *end_of_bundle;
int result = TRUE;
« no previous file with comments | « src/trusted/validator_ragel/unreviewed/validator_x86_32.rl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698