Index: src/ic/ic.cc |
diff --git a/src/ic/ic.cc b/src/ic/ic.cc |
index f5e531b0cea999053bb3e836e972d181e352c9ab..4fe97142f8e160fafe780f75e98357531e5df6e8 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 = |