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

Unified Diff: src/compiler/code-generator.h

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-unittest.cc ('k') | src/compiler/common-node-cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/code-generator.h
diff --git a/src/compiler/code-generator.h b/src/compiler/code-generator.h
index 84ec1d6aa94927ad783649aaa39e19644cbe7db6..0badbca7e8738fa7bda4398dfc5f509a4979280a 100644
--- a/src/compiler/code-generator.h
+++ b/src/compiler/code-generator.h
@@ -18,7 +18,7 @@ namespace internal {
namespace compiler {
// Generates native code for a sequence of instructions.
-class CodeGenerator V8_FINAL : public GapResolver::Assembler {
+class CodeGenerator FINAL : public GapResolver::Assembler {
public:
explicit CodeGenerator(InstructionSequence* code);
@@ -77,9 +77,9 @@ class CodeGenerator V8_FINAL : public GapResolver::Assembler {
// Interface used by the gap resolver to emit moves and swaps.
virtual void AssembleMove(InstructionOperand* source,
- InstructionOperand* destination) V8_OVERRIDE;
+ InstructionOperand* destination) OVERRIDE;
virtual void AssembleSwap(InstructionOperand* source,
- InstructionOperand* destination) V8_OVERRIDE;
+ InstructionOperand* destination) OVERRIDE;
// ===========================================================================
// Deoptimization table construction
« no previous file with comments | « src/compiler/change-lowering-unittest.cc ('k') | src/compiler/common-node-cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698