Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(556)

Unified Diff: src/liveedit.cc

Issue 10372003: Fix warning on Win64 (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698