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

Unified Diff: runtime/vm/snapshot.cc

Issue 1191333005: Fix build break. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot.cc
diff --git a/runtime/vm/snapshot.cc b/runtime/vm/snapshot.cc
index 8b92f723173b3f9f7f85b8c64390ab7cf505c6ce..135c559d8692a17658f82920549f142a960ae840 100644
--- a/runtime/vm/snapshot.cc
+++ b/runtime/vm/snapshot.cc
@@ -1390,7 +1390,7 @@ void SnapshotWriter::HandleVMIsolateObject(RawObject* rawobj) {
return;
}
default:
- OS::Print("class id = %d\n", id);
+ OS::Print("class id = %" Pd "\n", id);
break;
}
}
@@ -1739,7 +1739,6 @@ intptr_t ForwardList::AddObject(RawObject* raw, SerializeState state) {
intptr_t object_id = next_object_id();
ASSERT(object_id > 0 && object_id <= kMaxObjectId);
uword tags = raw->ptr()->tags_;
- // OS::Print("tags = 0x%x\n", tags);
ASSERT(SerializedHeaderTag::decode(tags) != kObjectId);
Node* node = new Node(raw, tags, state);
ASSERT(node != NULL);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698