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

Unified Diff: src/isolate.cc

Issue 10187003: Fix compile failure on Mac in r11417. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 8 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: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index c4d29ee29445ea1c19a1f28774d20252e74be84a..0c97abd89e8e186722834fad855f9adc4141783b 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -1857,12 +1857,12 @@ bool Isolate::Init(Deserializer* des) {
LOG(this, LogCompiledFunctions());
}
- CHECK_EQ(OFFSET_OF(Isolate, state_),
- static_cast<intptr_t>(Internals::kIsolateStateOffset));
- CHECK_EQ(OFFSET_OF(Isolate, embedder_data_),
- static_cast<intptr_t>(Internals::kIsolateEmbedderDataOffset));
- CHECK_EQ(OFFSET_OF(Isolate, heap_.roots_),
- static_cast<intptr_t>(Internals::kIsolateRootsOffset));
+ CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, state_)),
+ Internals::kIsolateStateOffset);
+ CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, embedder_data_)),
+ Internals::kIsolateEmbedderDataOffset);
+ CHECK_EQ(static_cast<int>(OFFSET_OF(Isolate, heap_.roots_)),
+ Internals::kIsolateRootsOffset);
state_ = INITIALIZED;
time_millis_at_init_ = OS::TimeCurrentMillis();
« 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