Revision: 14475
Author:   mstarzin...@chromium.org
Date:     Mon Apr 29 02:30:11 2013
Log:      Fix build failure on Win64 since r14458.

R=dslo...@chromium.org

Review URL: https://codereview.chromium.org/14150019
http://code.google.com/p/v8/source/detail?r=14475

Modified:
 /branches/bleeding_edge/src/runtime.cc

=======================================
--- /branches/bleeding_edge/src/runtime.cc      Fri Apr 26 08:30:41 2013
+++ /branches/bleeding_edge/src/runtime.cc      Mon Apr 29 02:30:11 2013
@@ -2482,7 +2482,7 @@
   // 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