| Index: src/ia32/lithium-codegen-ia32.h
|
| diff --git a/src/ia32/lithium-codegen-ia32.h b/src/ia32/lithium-codegen-ia32.h
|
| index 7c5896bcbdff9f652de84dab20d9980a27c34aee..94b9518766b257e7b549f8ca004ca9bd623b7268 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) V8_OVERRIDE;
|
| - void GenerateBodyInstructionPost(LInstruction* instr) V8_OVERRIDE;
|
| + void GenerateBodyInstructionPre(LInstruction* instr) OVERRIDE;
|
| + void GenerateBodyInstructionPost(LInstruction* instr) OVERRIDE;
|
| bool GeneratePrologue();
|
| bool GenerateDeferredCode();
|
| bool GenerateJumpTable();
|
| @@ -259,7 +259,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);
|
| @@ -311,7 +311,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);
|
| @@ -359,7 +359,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) {
|
|
|