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

Unified Diff: src/code-factory.cc

Issue 2676543002: [stubs] Rip out obsolete CallICState. (Closed)
Patch Set: Created 3 years, 11 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 | src/code-stubs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-factory.cc
diff --git a/src/code-factory.cc b/src/code-factory.cc
index 11c0ffeda23d8c700ec332c619bcdda5af6257d9..b3dca0f8af3fba8a40cd80661af50129976cee44 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -88,7 +88,7 @@ Callable CodeFactory::KeyedLoadICInOptimizedCode(Isolate* isolate) {
// static
Callable CodeFactory::CallIC(Isolate* isolate, ConvertReceiverMode mode,
TailCallMode tail_call_mode) {
- CallICStub stub(isolate, CallICState(mode, tail_call_mode));
+ CallICStub stub(isolate, mode, tail_call_mode);
return make_callable(stub);
}
@@ -96,7 +96,7 @@ Callable CodeFactory::CallIC(Isolate* isolate, ConvertReceiverMode mode,
Callable CodeFactory::CallICTrampoline(Isolate* isolate,
ConvertReceiverMode mode,
TailCallMode tail_call_mode) {
- CallICTrampolineStub stub(isolate, CallICState(mode, tail_call_mode));
+ CallICTrampolineStub stub(isolate, mode, tail_call_mode);
return make_callable(stub);
}
« no previous file with comments | « no previous file | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698