Reviewers: Yang,

Message:
Committed patchset #1 manually as r16083.

Description:
Fix Win64 build after r16079.

[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=16083

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

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 e9bd5ed0c14a91e757803ac215145a4a910251cd..c9d3f49ca9087e1cff82cfe1194fc413a0056278 100644
--- a/src/runtime.cc
+++ b/src/runtime.cc
@@ -8547,7 +8547,8 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_CompileForOnStackReplacement) {

     // Use linear search of the unoptimized code's back edge table to find
     // the AST id matching the PC.
- uint32_t target_pc_offset = frame->pc() - unoptimized->instruction_start();
+    uint32_t target_pc_offset =
+ static_cast<uint32_t>(frame->pc() - unoptimized->instruction_start());
     uint32_t loop_depth = 0;

     for (FullCodeGenerator::BackEdgeTableIterator back_edges(*unoptimized);


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


Reply via email to