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

Unified Diff: src/compiler/machine-operator-unittest.cc

Issue 526223002: Use Chrome compatible naming for compiler specifics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: mips Created 6 years, 3 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/compiler/machine-operator-reducer.h ('k') | src/compiler/node-matchers.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/machine-operator-unittest.cc
diff --git a/src/compiler/machine-operator-unittest.cc b/src/compiler/machine-operator-unittest.cc
index 5950ecb6018e9d24866d15707cee7ca04a9c7d89..e7b9337cf4cc5f9ed00b5efbdb177e9aff32f6e8 100644
--- a/src/compiler/machine-operator-unittest.cc
+++ b/src/compiler/machine-operator-unittest.cc
@@ -18,12 +18,12 @@ class MachineOperatorCommonTest : public CompilerTestWithParam<MachineType> {
MachineOperatorCommonTest() : machine_(NULL) {}
virtual ~MachineOperatorCommonTest() { EXPECT_THAT(machine_, IsNull()); }
- virtual void SetUp() V8_OVERRIDE {
+ virtual void SetUp() OVERRIDE {
CompilerTestWithParam<MachineType>::SetUp();
machine_ = new MachineOperatorBuilder(zone(), GetParam());
}
- virtual void TearDown() V8_OVERRIDE {
+ virtual void TearDown() OVERRIDE {
delete machine_;
machine_ = NULL;
CompilerTestWithParam<MachineType>::TearDown();
« no previous file with comments | « src/compiler/machine-operator-reducer.h ('k') | src/compiler/node-matchers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698