| Index: src/liveedit.cc
|
| diff --git a/src/liveedit.cc b/src/liveedit.cc
|
| index 2bab88f72ecb6ba3a149aff915d784e76cb8744a..22b82501e91f244b7bf16839e30ffb295c51e34d 100644
|
| --- a/src/liveedit.cc
|
| +++ b/src/liveedit.cc
|
| @@ -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;
|
|
|