Revision: 16083
Author: [email protected]
Date: Tue Aug 6 12:13:15 2013
Log: Fix Win64 build after r16079.
[email protected]
Review URL: https://codereview.chromium.org/22473002
http://code.google.com/p/v8/source/detail?r=16083
Modified:
/branches/bleeding_edge/src/runtime.cc
=======================================
--- /branches/bleeding_edge/src/runtime.cc Tue Aug 6 07:38:30 2013
+++ /branches/bleeding_edge/src/runtime.cc Tue Aug 6 12:13:15 2013
@@ -8547,7 +8547,8 @@
// 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.