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

Unified Diff: src/compiler/change-lowering-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, 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/compiler/change-lowering.h ('k') | src/compiler/code-generator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/change-lowering-unittest.cc
diff --git a/src/compiler/change-lowering-unittest.cc b/src/compiler/change-lowering-unittest.cc
index 387046bf9815c2ecc4719a84434145547d6ceaa7..c624715590fc3296046800ad973154b172a83802 100644
--- a/src/compiler/change-lowering-unittest.cc
+++ b/src/compiler/change-lowering-unittest.cc
@@ -114,7 +114,7 @@ class ChangeLoweringCommonTest
public:
virtual ~ChangeLoweringCommonTest() {}
- virtual MachineType WordRepresentation() const V8_FINAL V8_OVERRIDE {
+ virtual MachineType WordRepresentation() const FINAL OVERRIDE {
return GetParam();
}
};
@@ -184,7 +184,7 @@ INSTANTIATE_TEST_CASE_P(ChangeLoweringTest, ChangeLoweringCommonTest,
class ChangeLowering32Test : public ChangeLoweringTest {
public:
virtual ~ChangeLowering32Test() {}
- virtual MachineType WordRepresentation() const V8_FINAL V8_OVERRIDE {
+ virtual MachineType WordRepresentation() const FINAL OVERRIDE {
return kRepWord32;
}
};
@@ -332,7 +332,7 @@ TARGET_TEST_F(ChangeLowering32Test, ChangeUint32ToTagged) {
class ChangeLowering64Test : public ChangeLoweringTest {
public:
virtual ~ChangeLowering64Test() {}
- virtual MachineType WordRepresentation() const V8_FINAL V8_OVERRIDE {
+ virtual MachineType WordRepresentation() const FINAL OVERRIDE {
return kRepWord64;
}
};
« no previous file with comments | « src/compiler/change-lowering.h ('k') | src/compiler/code-generator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698