| Index: src/mips64/lithium-codegen-mips64.h
|
| diff --git a/src/mips64/lithium-codegen-mips64.h b/src/mips64/lithium-codegen-mips64.h
|
| index d67abdb7d74b2d0e09001f5a79086c3fb299859d..cfb689fe1d869fd33068ca016c02c8f68ee44025 100644
|
| --- a/src/mips64/lithium-codegen-mips64.h
|
| +++ b/src/mips64/lithium-codegen-mips64.h
|
| @@ -170,7 +170,7 @@ class LCodeGen: public LCodeGenBase {
|
|
|
| // Code generation passes. Returns true if code generation should
|
| // continue.
|
| - void GenerateBodyInstructionPre(LInstruction* instr) V8_OVERRIDE;
|
| + void GenerateBodyInstructionPre(LInstruction* instr) OVERRIDE;
|
| bool GeneratePrologue();
|
| bool GenerateDeferredCode();
|
| bool GenerateDeoptJumpTable();
|
| @@ -271,7 +271,7 @@ class LCodeGen: public LCodeGenBase {
|
| int arguments,
|
| Safepoint::DeoptMode mode);
|
|
|
| - void RecordAndWritePosition(int position) V8_OVERRIDE;
|
| + void RecordAndWritePosition(int position) OVERRIDE;
|
|
|
| static Condition TokenToCondition(Token::Value op, bool is_unsigned);
|
| void EmitGoto(int block);
|
| @@ -357,7 +357,7 @@ class LCodeGen: public LCodeGenBase {
|
| LEnvironment* environment);
|
|
|
|
|
| - void EnsureSpaceForLazyDeopt(int space_needed) V8_OVERRIDE;
|
| + void EnsureSpaceForLazyDeopt(int space_needed) OVERRIDE;
|
| void DoLoadKeyedExternalArray(LLoadKeyed* instr);
|
| void DoLoadKeyedFixedDoubleArray(LLoadKeyed* instr);
|
| void DoLoadKeyedFixedArray(LLoadKeyed* instr);
|
| @@ -387,7 +387,7 @@ class LCodeGen: public LCodeGenBase {
|
|
|
| Safepoint::Kind expected_safepoint_kind_;
|
|
|
| - class PushSafepointRegistersScope V8_FINAL BASE_EMBEDDED {
|
| + class PushSafepointRegistersScope FINAL BASE_EMBEDDED {
|
| public:
|
| explicit PushSafepointRegistersScope(LCodeGen* codegen)
|
| : codegen_(codegen) {
|
|
|