Index: src/trusted/validator_arm/model.h |
diff --git a/src/trusted/validator_arm/model.h b/src/trusted/validator_arm/model.h |
index 73ba98cdf53de54cc63a7be8d54dea86cb0af158..fa51668945b19c5921efd69887eb7619708c5617 100644 |
--- a/src/trusted/validator_arm/model.h |
+++ b/src/trusted/validator_arm/model.h |
@@ -1,8 +1,8 @@ |
/* |
- * Copyright 2009 The Native Client Authors. All rights reserved. |
+ * Copyright 2011 The Native Client Authors. All rights reserved. |
* Use of this source code is governed by a BSD-style license that can |
* be found in the LICENSE file. |
- * Copyright 2009, Google Inc. |
+ * Copyright 2011, Google Inc. |
*/ |
#ifndef NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_ARM_V2_MODEL_H |
@@ -104,6 +104,7 @@ class RegisterList { |
* - It inlines to a single machine instruction, |
* - The readability gain in inst_classes.cc is large. |
*/ |
+ /* @IGNORE_LINES_FOR_CODE_HYGIENE[2] */ |
inline RegisterList(const Register r); |
/* |
@@ -141,6 +142,10 @@ inline const RegisterList operator+(const RegisterList, const RegisterList); |
*/ |
static const RegisterList kRegisterListEverything = RegisterList(-1); |
+/* |
+ * A register list which contains no registers. |
+ */ |
+static const RegisterList kRegisterListNothing = RegisterList(0); |
/* |
* A 32-bit ARM instruction of unspecified type. |