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

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

Issue 816453005: [turbofan] Cleanup use of virtual, OVERRIDE, FINAL. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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
Index: src/compiler/code-generator.h
diff --git a/src/compiler/code-generator.h b/src/compiler/code-generator.h
index 46610dbde7f5f9cc9796b1215141ae754b00b255..747bad2e2246deded31ca96e0597c382d61d96b3 100644
--- a/src/compiler/code-generator.h
+++ b/src/compiler/code-generator.h
@@ -86,10 +86,10 @@ class CodeGenerator FINAL : public GapResolver::Assembler {
// ===========================================================================
// Interface used by the gap resolver to emit moves and swaps.
- virtual void AssembleMove(InstructionOperand* source,
- InstructionOperand* destination) OVERRIDE;
- virtual void AssembleSwap(InstructionOperand* source,
- InstructionOperand* destination) OVERRIDE;
+ void AssembleMove(InstructionOperand* source,
+ InstructionOperand* destination) FINAL;
+ void AssembleSwap(InstructionOperand* source,
+ InstructionOperand* destination) FINAL;
// ===========================================================================
// Deoptimization table construction

Powered by Google App Engine
This is Rietveld 408576698