| Index: src/arm/lithium-codegen-arm.h
|
| diff --git a/src/arm/lithium-codegen-arm.h b/src/arm/lithium-codegen-arm.h
|
| index 009475555ee093b783fa681634dc8c55c40ffb0b..ecf54cf682052dfd58298de64b6d420b331d6343 100644
|
| --- a/src/arm/lithium-codegen-arm.h
|
| +++ b/src/arm/lithium-codegen-arm.h
|
| @@ -169,7 +169,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);
|
| @@ -324,7 +324,7 @@ class LCodeGen: public LCodeGenBase {
|
| int* offset,
|
| AllocationSiteMode mode);
|
|
|
| - 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);
|
| @@ -354,7 +354,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) {
|
|
|