Commit a33c8830 authored by peter.rybin@gmail.com's avatar peter.rybin@gmail.com

Fix warning on Win64

Review URL: https://chromiumcodereview.appspot.com/10372003

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11504 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 885c142d
......@@ -1522,7 +1522,8 @@ static const char* DropFrames(Vector<StackFrame*> frames,
if (unused_stack_top > unused_stack_bottom) {
if (frame_has_padding) {
int shortage_bytes = unused_stack_top - unused_stack_bottom;
int shortage_bytes =
static_cast<int>(unused_stack_top - unused_stack_bottom);
Address padding_start = pre_top_frame->fp() -
Debug::FramePaddingLayout::kFrameBaseSize * kPointerSize;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment