From: peter.rybin@gmail.com Date: Thu, 3 May 2012 22:19:12 +0000 (+0000) Subject: Fix warning on Win64 X-Git-Tag: upstream/4.7.83~16753 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a33c883008ad26be557fdfbec1fbdecb266a7b03;p=platform%2Fupstream%2Fv8.git 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 --- diff --git a/src/liveedit.cc b/src/liveedit.cc index 2bab88f..22b8250 100644 --- a/src/liveedit.cc +++ b/src/liveedit.cc @@ -1522,7 +1522,8 @@ static const char* DropFrames(Vector 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(unused_stack_top - unused_stack_bottom); Address padding_start = pre_top_frame->fp() - Debug::FramePaddingLayout::kFrameBaseSize * kPointerSize;