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

Unified Diff: src/code-stubs.h

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
« no previous file with comments | « no previous file | src/ic/ic.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.h
diff --git a/src/code-stubs.h b/src/code-stubs.h
index 19c40f4e8bd8412533144557f1e3480b0e37273f..b2bd163125699b46a4583ee0317ab3c896b04f4b 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -1967,10 +1967,6 @@ class CompareICStub : public PlatformCodeStub {
LeftStateBits::encode(left) | RightStateBits::encode(right) |
StateBits::encode(state);
}
- CompareICStub(Isolate* isolate, ExtraICState extra_ic_state)
- : PlatformCodeStub(isolate) {
- minor_key_ = extra_ic_state;
- }
Igor Sheludko 2016/06/30 15:29:37 Nice catch! Thank you! However, I think the right
void set_known_map(Handle<Map> map) { known_map_ = map; }
« no previous file with comments | « no previous file | src/ic/ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698