| Index: src/ic.cc
|
| diff --git a/src/ic.cc b/src/ic.cc
|
| index f70f75a7f622b664df04244bf3c60449d46a6395..efecaf07f7b11d684f8be3a8c9b5cc5a4a2d73e0 100644
|
| --- a/src/ic.cc
|
| +++ b/src/ic.cc
|
| @@ -88,7 +88,8 @@ void IC::TraceIC(const char* type,
|
| // 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>");
|
|
|