| Index: src/x64/code-stubs-x64.h
|
| diff --git a/src/x64/code-stubs-x64.h b/src/x64/code-stubs-x64.h
|
| index 0efcf7fd1cac39391dda33dd6b68b89d44c64c40..09289cf3122417ef598af8d3ef2d22761b5984be 100644
|
| --- a/src/x64/code-stubs-x64.h
|
| +++ b/src/x64/code-stubs-x64.h
|
| @@ -71,7 +71,7 @@ class NameDictionaryLookupStub: public PlatformCodeStub {
|
| Register r0,
|
| Register r1);
|
|
|
| - bool SometimesSetsUpAFrame() OVERRIDE { return false; }
|
| + bool SometimesSetsUpAFrame() override { return false; }
|
|
|
| private:
|
| static const int kInlinedProbes = 4;
|
| @@ -134,7 +134,7 @@ class RecordWriteStub: public PlatformCodeStub {
|
| INCREMENTAL_COMPACTION
|
| };
|
|
|
| - bool SometimesSetsUpAFrame() OVERRIDE { return false; }
|
| + bool SometimesSetsUpAFrame() override { return false; }
|
|
|
| static const byte kTwoByteNopInstruction = 0x3c; // Cmpb al, #imm8.
|
| static const byte kTwoByteJumpInstruction = 0xeb; // Jmp #imm8.
|
| @@ -313,9 +313,9 @@ class RecordWriteStub: public PlatformCodeStub {
|
| kUpdateRememberedSetOnNoNeedToInformIncrementalMarker
|
| };
|
|
|
| - Major MajorKey() const FINAL { return RecordWrite; }
|
| + Major MajorKey() const final { return RecordWrite; }
|
|
|
| - void Generate(MacroAssembler* masm) OVERRIDE;
|
| + void Generate(MacroAssembler* masm) override;
|
| void GenerateIncremental(MacroAssembler* masm, Mode mode);
|
| void CheckNeedsToInformIncrementalMarker(
|
| MacroAssembler* masm,
|
| @@ -323,7 +323,7 @@ class RecordWriteStub: public PlatformCodeStub {
|
| Mode mode);
|
| void InformIncrementalMarker(MacroAssembler* masm);
|
|
|
| - void Activate(Code* code) OVERRIDE {
|
| + void Activate(Code* code) override {
|
| code->GetHeap()->incremental_marking()->ActivateGeneratedStub(code);
|
| }
|
|
|
|
|