Index: src/ia32/lithium-codegen-ia32.h |
diff --git a/src/ia32/lithium-codegen-ia32.h b/src/ia32/lithium-codegen-ia32.h |
index d7dca7c5875d69a943b84a68ee77bb21e362e716..32ea6bf17e2dae2211b6b397dd763bef83c762fe 100644 |
--- a/src/ia32/lithium-codegen-ia32.h |
+++ b/src/ia32/lithium-codegen-ia32.h |
@@ -148,8 +148,8 @@ class LCodeGen: public LCodeGenBase { |
// Code generation passes. Returns true if code generation should |
// continue. |
- void GenerateBodyInstructionPre(LInstruction* instr) OVERRIDE; |
- void GenerateBodyInstructionPost(LInstruction* instr) OVERRIDE; |
+ void GenerateBodyInstructionPre(LInstruction* instr) override; |
+ void GenerateBodyInstructionPost(LInstruction* instr) override; |
bool GeneratePrologue(); |
bool GenerateDeferredCode(); |
bool GenerateJumpTable(); |
@@ -253,7 +253,7 @@ class LCodeGen: public LCodeGenBase { |
int arguments, |
Safepoint::DeoptMode mode); |
- void RecordAndWritePosition(int position) OVERRIDE; |
+ void RecordAndWritePosition(int position) override; |
static Condition TokenToCondition(Token::Value op, bool is_unsigned); |
void EmitGoto(int block); |
@@ -299,7 +299,7 @@ class LCodeGen: public LCodeGenBase { |
int* offset, |
AllocationSiteMode mode); |
- void EnsureSpaceForLazyDeopt(int space_needed) OVERRIDE; |
+ void EnsureSpaceForLazyDeopt(int space_needed) override; |
void DoLoadKeyedExternalArray(LLoadKeyed* instr); |
void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr); |
void DoLoadKeyedFixedArray(LLoadKeyed* instr); |
@@ -347,7 +347,7 @@ class LCodeGen: public LCodeGenBase { |
Safepoint::Kind expected_safepoint_kind_; |
- class PushSafepointRegistersScope FINAL BASE_EMBEDDED { |
+ class PushSafepointRegistersScope final BASE_EMBEDDED { |
public: |
explicit PushSafepointRegistersScope(LCodeGen* codegen) |
: codegen_(codegen) { |