| Index: src/ic/ic.cc
|
| diff --git a/src/ic/ic.cc b/src/ic/ic.cc
|
| index dd310a9c201c5357a8f6915dd3dc406eb55c240e..eb56025de35f6dfffc9a618c856c66d88e5dae22 100644
|
| --- a/src/ic/ic.cc
|
| +++ b/src/ic/ic.cc
|
| @@ -115,7 +115,7 @@ void IC::TraceIC(const char* type, Handle<Object> name, State old_state,
|
| if (maybe_function->IsJSFunction()) {
|
| JSFunction* function = JSFunction::cast(maybe_function);
|
| int code_offset = 0;
|
| - if (function->code()->is_interpreter_trampoline_builtin()) {
|
| + if (function->IsInterpreted()) {
|
| code_offset = InterpretedFrame::GetBytecodeOffset(fp());
|
| } else {
|
| code_offset =
|
|
|