diff options
Diffstat (limited to 'runtime/jit/jit.cc')
| -rw-r--r-- | runtime/jit/jit.cc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/runtime/jit/jit.cc b/runtime/jit/jit.cc index 1ec4749146..3631a9d467 100644 --- a/runtime/jit/jit.cc +++ b/runtime/jit/jit.cc @@ -325,16 +325,12 @@ void Jit::DeleteThreadPool() { } void Jit::StartProfileSaver(const std::string& filename, - const std::vector<std::string>& code_paths, - const std::string& foreign_dex_profile_path, - const std::string& app_dir) { + const std::vector<std::string>& code_paths) { if (profile_saver_options_.IsEnabled()) { ProfileSaver::Start(profile_saver_options_, filename, code_cache_.get(), - code_paths, - foreign_dex_profile_path, - app_dir); + code_paths); } } |