Index: src/compiler/code-generator.h |
diff --git a/src/compiler/code-generator.h b/src/compiler/code-generator.h |
index 9b3c51f97cb89b4d8ac7d48dfc65f1e9450456b2..9e496537dbf59694343b4b764ee52d5a29ddfb48 100644 |
--- a/src/compiler/code-generator.h |
+++ b/src/compiler/code-generator.h |
@@ -28,7 +28,7 @@ struct BranchInfo { |
// Generates native code for a sequence of instructions. |
-class CodeGenerator FINAL : public GapResolver::Assembler { |
+class CodeGenerator final : public GapResolver::Assembler { |
public: |
explicit CodeGenerator(Frame* frame, Linkage* linkage, |
InstructionSequence* code, CompilationInfo* info); |
@@ -99,9 +99,9 @@ class CodeGenerator FINAL : public GapResolver::Assembler { |
// Interface used by the gap resolver to emit moves and swaps. |
void AssembleMove(InstructionOperand* source, |
- InstructionOperand* destination) FINAL; |
+ InstructionOperand* destination) final; |
void AssembleSwap(InstructionOperand* source, |
- InstructionOperand* destination) FINAL; |
+ InstructionOperand* destination) final; |
// =========================================================================== |
// =================== Jump table construction methods. ====================== |