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

Unified Diff: src/trusted/validator_mips/inst_classes.h

Issue 11876041: [MIPS] Add thread-pointer to data addressing register list. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Update the comment. Created 7 years, 11 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_mips/model.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator_mips/inst_classes.h
diff --git a/src/trusted/validator_mips/inst_classes.h b/src/trusted/validator_mips/inst_classes.h
index 02617377c09742a2241df5c43e2d662b44851e72..ef8b27b9b88ec82a94ddfa9065d0f72d328e7188 100644
--- a/src/trusted/validator_mips/inst_classes.h
+++ b/src/trusted/validator_mips/inst_classes.h
@@ -1,8 +1,7 @@
/*
- * Copyright 2012 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 2012, Google Inc.
+ * Copyright (c) 2012 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.
*/
#ifndef NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_MIPS_INST_CLASSES_H
@@ -90,7 +89,7 @@ class ClassDecoder {
*/
virtual Register DestGprReg(const Instruction instr) const {
UNREFERENCED_PARAMETER(instr);
- return kRegisterNone;
+ return Register::None();
}
/*
@@ -151,7 +150,7 @@ class ClassDecoder {
*/
virtual Register TargetReg(const Instruction instr) const {
UNREFERENCED_PARAMETER(instr);
- return kRegisterNone;
+ return Register::None();
}
/*
@@ -159,7 +158,7 @@ class ClassDecoder {
*/
virtual Register BaseAddressRegister(const Instruction instr) const {
UNREFERENCED_PARAMETER(instr);
- return kRegisterNone;
+ return Register::None();
}
« no previous file with comments | « no previous file | src/trusted/validator_mips/model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698