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

Unified Diff: vm/raw_object.cc

Issue 9965042: - Add a class index to the classes. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 9 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: vm/raw_object.cc
===================================================================
--- vm/raw_object.cc (revision 5947)
+++ vm/raw_object.cc (working copy)
@@ -31,7 +31,7 @@
// Validate that the tags_ field is sensible.
intptr_t tags = ptr()->tags_;
- ASSERT((tags & 0xffff00f0) == 0);
+ ASSERT((tags & 0x000000f0) == 0);
}

Powered by Google App Engine
This is Rietveld 408576698