Reviewers: Dmitry Lomov (chromium),

Description:
Fix build failure on Win64 since r14458.

R=dslo...@chromium.org

Please review this at https://codereview.chromium.org/14150019/

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

Affected files:
  M src/runtime.cc


Index: src/runtime.cc
diff --git a/src/runtime.cc b/src/runtime.cc
index 5c1cde2bf526297371769d68390398021faa0746..dc7de2a4dea5b43ddd4a54e3ff49bf75c0752a34 100644
--- a/src/runtime.cc
+++ b/src/runtime.cc
@@ -2480,7 +2480,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_SuspendJSGeneratorObject) {
   // allocation fails.
   intptr_t offset = frame->pc() - function->code()->instruction_start();
   ASSERT(offset > 0 && Smi::IsValid(offset));
-  generator_object->set_continuation(offset);
+  generator_object->set_continuation(static_cast<int>(offset));

// It's possible for the context to be other than the initial context even if // there is no stack handler active. For example, this is the case in the


--
--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to