Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Unified Diff: src/compiler/js-generic-lowering.cc

Issue 526343002: Remove NotMissMinorKey implementation from HydrogenCodeStub shims. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698