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

Unified Diff: vm/ic_data.cc

Issue 8827015: Implement two-argument check inline cache. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: '' Created 9 years 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: vm/ic_data.cc
===================================================================
--- vm/ic_data.cc (revision 2318)
+++ vm/ic_data.cc (working copy)
@@ -91,8 +91,6 @@
for (intptr_t i = 0; i < classes.length(); i++) {
// Null is used as terminating object, do not add it.
ASSERT(!classes[i]->IsNull());
- // Contract says that the class of null (NullClass) cannot be added.
- ASSERT(!classes[i]->IsNullClass());
data_->SetAt(pos++, *(classes[i]));
}
ASSERT(!target.IsNull());

Powered by Google App Engine
This is Rietveld 408576698