diff options
-rw-r--r-- | runtime/jit/offline_profiling_info.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/jit/offline_profiling_info.cc b/runtime/jit/offline_profiling_info.cc index 5039d2de07..aa606a26d3 100644 --- a/runtime/jit/offline_profiling_info.cc +++ b/runtime/jit/offline_profiling_info.cc @@ -637,7 +637,7 @@ std::string ProfileCompilationInfo::DumpInfo(const std::vector<const DexFile*>* os << "\n\tclasses: "; for (const auto class_it : dex_data.class_set) { if (dex_file != nullptr) { - os << "\n\t\t" << PrettyType(class_it, *dex_file); + os << "\n\t\t" << dex_file->GetClassDescriptor(dex_file->GetClassDef(class_it)); } else { os << class_it << ","; } |