| Index: src/code-stubs.h
|
| diff --git a/src/code-stubs.h b/src/code-stubs.h
|
| index a2738dface63aa81b4d0eab7d17f6cc1a7acd5b9..2d1f09b1cd87ce7ba0e4c73053bdd661baf7984d 100644
|
| --- a/src/code-stubs.h
|
| +++ b/src/code-stubs.h
|
| @@ -837,7 +837,7 @@ class CallICStub: public PlatformCodeStub {
|
| void GenerateMiss(MacroAssembler* masm, IC::UtilityId id);
|
|
|
| private:
|
| - virtual inline Major MajorKey() const FINAL OVERRIDE;
|
| + virtual inline Major MajorKey() const OVERRIDE;
|
|
|
| virtual void PrintState(OStream& os) const OVERRIDE; // NOLINT
|
|
|
| @@ -1158,7 +1158,7 @@ class BinaryOpICStub : public HydrogenCodeStub {
|
| static const int kRight = 1;
|
|
|
| private:
|
| - virtual inline Major MajorKey() const FINAL OVERRIDE;
|
| + virtual inline Major MajorKey() const OVERRIDE;
|
|
|
| static void GenerateAheadOfTime(Isolate* isolate,
|
| const BinaryOpIC::State& state);
|
| @@ -1906,7 +1906,7 @@ class LoadICTrampolineStub : public PlatformCodeStub {
|
| return static_cast<ExtraICState>(minor_key_);
|
| }
|
|
|
| - virtual inline Major MajorKey() const FINAL OVERRIDE;
|
| + virtual inline Major MajorKey() const OVERRIDE;
|
|
|
| private:
|
| LoadIC::State state() const {
|
| @@ -1962,7 +1962,7 @@ class VectorLoadStub : public HydrogenCodeStub {
|
| }
|
|
|
| private:
|
| - virtual inline Major MajorKey() const FINAL OVERRIDE;
|
| + virtual inline Major MajorKey() const OVERRIDE;
|
|
|
| LoadIC::State state() const { return LoadIC::State(GetExtraICState()); }
|
|
|
|
|