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

Side by Side Diff: src/trusted/validator_arm/testdata-thumb/masks.h

Issue 7799013: Intial Thumb2 Sandbox (naclrev 6680) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: asdsa Created 9 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /*
2 * Copyright 2011 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can
4 * be found in the LICENSE file.
5 * Copyright 2011, Google Inc.
6 */
7 #define HIGH_TWO #0xC0000000
8 #define LOW_FOUR #0xF
9 #define DMASK(r) bic r, r, HIGH_TWO
10 #define CMASK(r) bic r, r, HIGH_TWO;\
11 orr r, r, LOW_FOUR
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698