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

Unified Diff: runtime/vm/raw_object.cc

Issue 9114054: Port a couple more stubs to x64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 11 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: runtime/vm/raw_object.cc
===================================================================
--- runtime/vm/raw_object.cc (revision 3170)
+++ runtime/vm/raw_object.cc (working copy)
@@ -165,7 +165,7 @@
}
ASSERT(instance_size != 0);
intptr_t tags = ptr()->tags_;
- ASSERT((instance_size == (SizeTag::decode(tags))) ||
+ ASSERT((instance_size == SizeTag::decode(tags)) ||
(SizeTag::decode(tags) == 0) ||
FreeBit::decode(tags));
return instance_size;
« runtime/vm/cpu_x64.cc ('K') | « runtime/vm/cpu_x64.cc ('k') | runtime/vm/stub_code_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698