Remove NotMissMinorKey implementation from HydrogenCodeStub shims.
authoryangguo@chromium.org <yangguo@chromium.org>
Tue, 2 Sep 2014 12:01:37 +0000 (12:01 +0000)
committeryangguo@chromium.org <yangguo@chromium.org>
Tue, 2 Sep 2014 12:01:37 +0000 (12:01 +0000)
TBR=mstarzinger@chromium.org

Review URL: https://codereview.chromium.org/526343002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23607 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

src/compiler/js-generic-lowering.cc

index e7aa69d..0cb410b 100644 (file)
@@ -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_;