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

Unified Diff: src/ic/ic.cc

Issue 2147013002: [stubs] Removed "Vector" ornamentation from StoreIC stubs names. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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
Index: src/ic/ic.cc
diff --git a/src/ic/ic.cc b/src/ic/ic.cc
index b82440f053d7ce598d604ec3b923a668e745dc18..7ae6f670d872bbdc29088fe0bcae95925481867f 100644
--- a/src/ic/ic.cc
+++ b/src/ic/ic.cc
@@ -837,7 +837,7 @@ Handle<Code> KeyedLoadIC::initialize_stub_in_optimized_code(
Handle<Code> KeyedStoreIC::initialize_stub_in_optimized_code(
Isolate* isolate, LanguageMode language_mode) {
StoreICState state = StoreICState(language_mode);
- return VectorKeyedStoreICStub(isolate, state).GetCode();
+ return KeyedStoreICStub(isolate, state).GetCode();
}
@@ -1588,7 +1588,7 @@ Handle<Code> CallIC::initialize_stub_in_optimized_code(
Handle<Code> StoreIC::initialize_stub_in_optimized_code(
Isolate* isolate, LanguageMode language_mode) {
- VectorStoreICStub stub(isolate, StoreICState(language_mode));
+ StoreICStub stub(isolate, StoreICState(language_mode));
return stub.GetCode();
}
« src/code-stubs.h ('K') | « src/ia32/code-stubs-ia32.cc ('k') | src/mips/code-stubs-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698