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

Unified Diff: src/ic/ic.cc

Issue 2116523002: [ic] [stubs] Add missing GetExtraICState method to CompareICStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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
« src/code-stubs.h ('K') | « 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/ic.cc
diff --git a/src/ic/ic.cc b/src/ic/ic.cc
index 53dbe694eb31b17899d93c7e275ffe2c60e30487..5b17f276edaf8eead88ea1803d8b8c93370416d3 100644
--- a/src/ic/ic.cc
+++ b/src/ic/ic.cc
@@ -190,7 +190,7 @@ InlineCacheState IC::StateFromCode(Code* code) {
return state.GetICState();
}
case Code::COMPARE_IC: {
- CompareICStub stub(isolate, code->extra_ic_state());
+ CompareICStub stub(code->stub_key(), isolate);
return stub.GetICState();
}
case Code::TO_BOOLEAN_IC: {
« src/code-stubs.h ('K') | « src/code-stubs.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698