From: yangguo@chromium.org Date: Tue, 2 Sep 2014 12:01:37 +0000 (+0000) Subject: Remove NotMissMinorKey implementation from HydrogenCodeStub shims. X-Git-Tag: upstream/4.7.83~7204 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=af3aa27714717dabfe0502f1a7fe40f1782dd57a;p=platform%2Fupstream%2Fv8.git 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 --- diff --git a/src/compiler/js-generic-lowering.cc b/src/compiler/js-generic-lowering.cc index e7aa69d..0cb410b 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_;