Revision: 6492
Author: [email protected]
Date: Wed Jan 26 05:54:25 2011
Log: X64 Crankshaft: Fix compilation error on Windows X64.
Review URL: http://codereview.chromium.org/6338018
http://code.google.com/p/v8/source/detail?r=6492

Modified:
 /branches/bleeding_edge/src/x64/deoptimizer-x64.cc

=======================================
--- /branches/bleeding_edge/src/x64/deoptimizer-x64.cc Tue Jan 25 00:59:16 2011 +++ /branches/bleeding_edge/src/x64/deoptimizer-x64.cc Wed Jan 26 05:54:25 2011
@@ -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

Reply via email to