Fix compile failure on Mac in r11417.

R=jkummerow@chromium.org

Review URL: https://chromiumcodereview.appspot.com/10187003

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11419 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent ba6500b0
...@@ -1857,12 +1857,12 @@ bool Isolate::Init(Deserializer* des) { ...@@ -1857,12 +1857,12 @@ bool Isolate::Init(Deserializer* des) {
LOG(this, LogCompiledFunctions()); LOG(this, LogCompiledFunctions());
} }
CHECK_EQ(OFFSET_OF(Isolate, state_), CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, state_)),
static_cast<intptr_t>(Internals::kIsolateStateOffset)); Internals::kIsolateStateOffset);
CHECK_EQ(OFFSET_OF(Isolate, embedder_data_), CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, embedder_data_)),
static_cast<intptr_t>(Internals::kIsolateEmbedderDataOffset)); Internals::kIsolateEmbedderDataOffset);
CHECK_EQ(OFFSET_OF(Isolate, heap_.roots_), CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, heap_.roots_)),
static_cast<intptr_t>(Internals::kIsolateRootsOffset)); Internals::kIsolateRootsOffset);
state_ = INITIALIZED; state_ = INITIALIZED;
time_millis_at_init_ = OS::TimeCurrentMillis(); time_millis_at_init_ = OS::TimeCurrentMillis();
......
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