Commit 94d57588 authored by whesse@chromium.org's avatar whesse@chromium.org

Fix unused variable warning in serialize.cc

Review URL: http://codereview.chromium.org/243025

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2975 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent c08b11db
......@@ -1632,8 +1632,7 @@ Object* Deserializer::GetObject() {
obj->IterateBody(type, size, this);
if (type == CODE_TYPE) {
Code* code = Code::cast(obj);
LOG(CodeMoveEvent(a, code->address()));
LOG(CodeMoveEvent(a, obj->address()));
}
objects_++;
return o;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment