diff options
Diffstat (limited to 'runtime/trace_common.h')
-rw-r--r-- | runtime/trace_common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/trace_common.h b/runtime/trace_common.h index 93ffb9b0da..759a0bbc49 100644 --- a/runtime/trace_common.h +++ b/runtime/trace_common.h @@ -27,6 +27,7 @@ using android::base::StringPrintf; namespace art HIDDEN { static std::string GetMethodInfoLine(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_) { + method = method->GetInterfaceMethodIfProxy(kRuntimePointerSize); return StringPrintf("%s\t%s\t%s\t%s\n", PrettyDescriptor(method->GetDeclaringClassDescriptor()).c_str(), method->GetName(), |