Reviewers: William Hesse, Description: Fix win64 debug mode compilation
Please review this at http://codereview.chromium.org/7482042/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/ic.cc Index: src/ic.cc =================================================================== --- src/ic.cc (revision 8749) +++ src/ic.cc (working copy) @@ -88,7 +88,8 @@ // function and the original code. JSFunction* function = JSFunction::cast(frame->function()); function->PrintName(); - int code_offset = address() - js_code->instruction_start(); + int code_offset = + static_cast<int>(address() - js_code->instruction_start()); PrintF("+%d", code_offset); } else { PrintF("<unknown>"); -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
