Fix build break.

BUG=

Review URL: https://codereview.chromium.org//1191333005.
This commit is contained in:
Siva Annamalai 2015-06-19 11:18:04 -07:00
parent 773d7b00fb
commit 408a2923a2

View file

@ -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);