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

Unified Diff: src/ic.cc

Issue 445563002: Cleanup hydrogen generated handlers (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Init bit_field_ to 0 Created 6 years, 4 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 | « src/code-stubs.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic.cc
diff --git a/src/ic.cc b/src/ic.cc
index 35b69775b251ded004fdd75ea305e98a24923f66..56ec2d3ef117abb75d63164a91435aea7e91f981 100644
--- a/src/ic.cc
+++ b/src/ic.cc
@@ -1442,7 +1442,6 @@ Handle<Code> StoreIC::CompileStoreHandler(LookupResult* lookup,
case FIELD:
return compiler.CompileStoreField(lookup, name);
case NORMAL:
- if (kind() == Code::KEYED_STORE_IC) break;
if (receiver->IsJSGlobalProxy() || receiver->IsGlobalObject()) {
// The stub generated for the global object picks the value directly
// from the property cell. So the property must be directly on the
@@ -1497,7 +1496,6 @@ Handle<Code> StoreIC::CompileStoreHandler(LookupResult* lookup,
break;
}
case INTERCEPTOR:
- if (kind() == Code::KEYED_STORE_IC) break;
DCHECK(HasInterceptorSetter(*holder));
return compiler.CompileStoreInterceptor(name);
case CONSTANT:
« no previous file with comments | « src/code-stubs.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698