Reviewers: Jakob,

Description:
Fix build failure on Win64 since r14458.

R=jkumme...@chromium.org

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

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

Affected files:
  M src/frames-inl.h


Index: src/frames-inl.h
diff --git a/src/frames-inl.h b/src/frames-inl.h
index 6ca1f1ff69868850549d3d026e6a6401375a2c36..7901a5e591c85f8d85431d7dbbecd426e64ab08d 100644
--- a/src/frames-inl.h
+++ b/src/frames-inl.h
@@ -236,7 +236,7 @@ inline int JavaScriptFrame::ComputeOperandsCount() const {
   ASSERT(IsAligned(stack_size_in_bytes, kPointerSize));
   ASSERT(type() == JAVA_SCRIPT);
   ASSERT(stack_size_in_bytes >= 0);
-  return stack_size_in_bytes >> kPointerSizeLog2;
+  return static_cast<int>(stack_size_in_bytes >> kPointerSizeLog2);
 }




--
--
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