 Chromium Code Reviews
 Chromium Code Reviews Issue 7482042:
  Fix win64 debug mode compilation  (Closed) 
  Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
    
  
    Issue 7482042:
  Fix win64 debug mode compilation  (Closed) 
  Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/| 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>"); |