Commit af3aa277 authored by yangguo@chromium.org's avatar yangguo@chromium.org

Remove NotMissMinorKey implementation from HydrogenCodeStub shims.

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
parent 1823ae01
......@@ -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_;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment