Reviewers: Rico,
Message:
[email protected]
Description:
X64 Crankshaft: Fix compilation error on Windows X64.
Please review this at http://codereview.chromium.org/6338018/
SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/
Affected files:
M src/x64/deoptimizer-x64.cc
Index: src/x64/deoptimizer-x64.cc
===================================================================
--- src/x64/deoptimizer-x64.cc (revision 6491)
+++ src/x64/deoptimizer-x64.cc (working copy)
@@ -145,7 +145,7 @@
// The 'fixed' part of the frame consists of the incoming parameters and
// the part described by JavaScriptFrameConstants.
unsigned fixed_frame_size = ComputeFixedSize(function);
- unsigned input_frame_size = input_->GetFrameSize();
+ unsigned input_frame_size =
static_cast<unsigned>(input_->GetFrameSize());
unsigned output_frame_size = height_in_bytes + fixed_frame_size;
// Allocate and store the output frame description.
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev