Reviewers: Jakob,

Description:
Fix compile failure on Mac in r11417.

[email protected]


Please review this at https://chromiumcodereview.appspot.com/10187003/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M src/isolate.cc


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


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to