Reviewers: ulan_chromium.prg, wingo,
Description:
Fix build failures on Win64 since r14354.
[email protected]
Please review this at https://codereview.chromium.org/14246034/
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
1df5653acfc5a772fc96ce4cde3bceac9ddaea12..cd1af05d578d59dd268d3adfc289388e143cf551
100644
--- a/src/runtime.cc
+++ b/src/runtime.cc
@@ -2433,7 +2433,7 @@ RUNTIME_FUNCTION(MaybeObject*,
Runtime_SuspendJSGeneratorObject) {
intptr_t offset = frame->pc() - function->code()->instruction_start();
ASSERT(*function == generator_object->function());
ASSERT(offset > 0 && Smi::IsValid(offset));
- generator_object->set_continuation(offset);
+ generator_object->set_continuation(static_cast<int>(offset));
// Generator functions force context allocation for locals, so Local0
points
// to the bottom of the operand stack. Assume the stack grows down.
@@ -2447,7 +2447,7 @@ RUNTIME_FUNCTION(MaybeObject*,
Runtime_SuspendJSGeneratorObject) {
ASSERT(IsAligned(stack_size_in_bytes, kPointerSize));
ASSERT(stack_size_in_bytes >= 0);
ASSERT(Smi::IsValid(stack_size_in_bytes));
- unsigned stack_size = stack_size_in_bytes >> kPointerSizeLog2;
+ intptr_t stack_size = stack_size_in_bytes >> kPointerSizeLog2;
// We expect there to be at least two values on the stack: the return
value of
// the yield expression, and the argument to this runtime call. Neither
of
--
--
v8-dev mailing list
[email protected]
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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.