| Index: src/mips/code-stubs-mips.h
|
| diff --git a/src/mips/code-stubs-mips.h b/src/mips/code-stubs-mips.h
|
| index b3d2c45ac2cc577cc976573fe0fd51cd3d11c48e..9796fd49995ca023d9d2228054f83f74bbe25fd2 100644
|
| --- a/src/mips/code-stubs-mips.h
|
| +++ b/src/mips/code-stubs-mips.h
|
| @@ -101,7 +101,7 @@ class RecordWriteStub: public PlatformCodeStub {
|
| INCREMENTAL_COMPACTION
|
| };
|
|
|
| - virtual bool SometimesSetsUpAFrame() { return false; }
|
| + bool SometimesSetsUpAFrame() OVERRIDE { return false; }
|
|
|
| static void PatchBranchIntoNop(MacroAssembler* masm, int pos) {
|
| const unsigned offset = masm->instr_at(pos) & kImm16Mask;
|
| @@ -228,9 +228,9 @@ class RecordWriteStub: public PlatformCodeStub {
|
| kUpdateRememberedSetOnNoNeedToInformIncrementalMarker
|
| };
|
|
|
| - virtual inline Major MajorKey() const FINAL OVERRIDE { return RecordWrite; }
|
| + inline Major MajorKey() const FINAL { return RecordWrite; }
|
|
|
| - virtual void Generate(MacroAssembler* masm) OVERRIDE;
|
| + void Generate(MacroAssembler* masm) OVERRIDE;
|
| void GenerateIncremental(MacroAssembler* masm, Mode mode);
|
| void CheckNeedsToInformIncrementalMarker(
|
| MacroAssembler* masm,
|
| @@ -238,7 +238,7 @@ class RecordWriteStub: public PlatformCodeStub {
|
| Mode mode);
|
| void InformIncrementalMarker(MacroAssembler* masm);
|
|
|
| - void Activate(Code* code) {
|
| + void Activate(Code* code) OVERRIDE {
|
| code->GetHeap()->incremental_marking()->ActivateGeneratedStub(code);
|
| }
|
|
|
| @@ -286,7 +286,7 @@ class DirectCEntryStub: public PlatformCodeStub {
|
| void GenerateCall(MacroAssembler* masm, Register target);
|
|
|
| private:
|
| - bool NeedsImmovableCode() { return true; }
|
| + bool NeedsImmovableCode() OVERRIDE { return true; }
|
|
|
| DEFINE_NULL_CALL_INTERFACE_DESCRIPTOR();
|
| DEFINE_PLATFORM_CODE_STUB(DirectCEntry, PlatformCodeStub);
|
| @@ -318,7 +318,7 @@ class NameDictionaryLookupStub: public PlatformCodeStub {
|
| Register r0,
|
| Register r1);
|
|
|
| - virtual bool SometimesSetsUpAFrame() { return false; }
|
| + bool SometimesSetsUpAFrame() OVERRIDE { return false; }
|
|
|
| private:
|
| static const int kInlinedProbes = 4;
|
|
|