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

Unified Diff: src/ic/ic.cc

Issue 1151253004: VectorICs: Create a StoreICState to more easily create matching code stubs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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/ic/ic.h ('k') | src/ic/ic-compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic/ic.cc
diff --git a/src/ic/ic.cc b/src/ic/ic.cc
index 68745dc22f1133bb736406bf0bca563061ef5971..7ac66950f390f138063f012c5d364c309df057e2 100644
--- a/src/ic/ic.cc
+++ b/src/ic/ic.cc
@@ -562,8 +562,8 @@ void KeyedStoreIC::Clear(Isolate* isolate, Address address, Code* target,
ConstantPoolArray* constant_pool) {
if (IsCleared(target)) return;
SetTargetAtAddress(
- address, *pre_monomorphic_stub(
- isolate, StoreIC::GetLanguageMode(target->extra_ic_state())),
+ address, *pre_monomorphic_stub(isolate, StoreICState::GetLanguageMode(
+ target->extra_ic_state())),
Jakob Kummerow 2015/05/22 08:52:51 nit: this indentation looks funny. Maybe pull out
mvstanton 2015/05/22 09:12:56 Yeah, totally agree, will do.
constant_pool);
}
« no previous file with comments | « src/ic/ic.h ('k') | src/ic/ic-compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698