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

Unified Diff: runtime/vm/raw_object.cc

Issue 24775002: Fix --gc_at_alloc (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | « no previous file | runtime/vm/scavenger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/raw_object.cc
diff --git a/runtime/vm/raw_object.cc b/runtime/vm/raw_object.cc
index c003f6e0fc26ad05d4f1a0d6e1da3357d4e0d2f7..d63f95fea54b53a33b0f855d2043cfb1be85fe91 100644
--- a/runtime/vm/raw_object.cc
+++ b/runtime/vm/raw_object.cc
@@ -251,6 +251,9 @@ intptr_t RawObject::VisitPointers(ObjectPointerVisitor* visitor) {
size = element->Size();
break;
}
+ case kNullCid:
Ivan Posva 2013/09/27 00:28:58 How come we are visiting the Null object suddenly?
+ size = Size();
+ break;
default:
OS::Print("Class Id: %" Pd "\n", class_id);
UNREACHABLE();
« no previous file with comments | « no previous file | runtime/vm/scavenger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698