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

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, 8 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 | « vm/raw_object.h ('k') | vm/snapshot.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/raw_object.cc
===================================================================
--- vm/raw_object.cc (revision 6994)
+++ 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);
siva 2012/04/30 23:47:20 We could add an assertion here that the class inde
Ivan Posva 2012/05/01 15:11:17 Will do: See https://chromiumcodereview.appspot.co
}
« no previous file with comments | « vm/raw_object.h ('k') | vm/snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698