Chromium Code Reviews| 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
|
| } |