Index: src/compiler/js-generic-lowering.cc |
diff --git a/src/compiler/js-generic-lowering.cc b/src/compiler/js-generic-lowering.cc |
index e7aa69d1032cdfb837aecd907d2eae25a465a552..0cb410b7edc3c3473137796163d0ca8a50efd2bc 100644 |
--- a/src/compiler/js-generic-lowering.cc |
+++ b/src/compiler/js-generic-lowering.cc |
@@ -53,7 +53,6 @@ class LoadICStubShim : public HydrogenCodeStub { |
private: |
virtual Major MajorKey() const OVERRIDE { return NoCache; } |
- virtual int NotMissMinorKey() const OVERRIDE { return 0; } |
virtual bool UseSpecialCache() OVERRIDE { return true; } |
ContextualMode contextual_mode_; |
@@ -82,7 +81,6 @@ class KeyedLoadICStubShim : public HydrogenCodeStub { |
private: |
virtual Major MajorKey() const OVERRIDE { return NoCache; } |
- virtual int NotMissMinorKey() const OVERRIDE { return 0; } |
virtual bool UseSpecialCache() OVERRIDE { return true; } |
}; |
@@ -110,7 +108,6 @@ class StoreICStubShim : public HydrogenCodeStub { |
private: |
virtual Major MajorKey() const OVERRIDE { return NoCache; } |
- virtual int NotMissMinorKey() const OVERRIDE { return 0; } |
virtual bool UseSpecialCache() OVERRIDE { return true; } |
StrictMode strict_mode_; |
@@ -142,7 +139,6 @@ class KeyedStoreICStubShim : public HydrogenCodeStub { |
private: |
virtual Major MajorKey() const OVERRIDE { return NoCache; } |
- virtual int NotMissMinorKey() const OVERRIDE { return 0; } |
virtual bool UseSpecialCache() OVERRIDE { return true; } |
StrictMode strict_mode_; |