diff options
| -rw-r--r-- | runtime/jit/profile_saver.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/jit/profile_saver.cc b/runtime/jit/profile_saver.cc index 201e4c71ca..949215af8a 100644 --- a/runtime/jit/profile_saver.cc +++ b/runtime/jit/profile_saver.cc @@ -271,10 +271,10 @@ static bool ShouldProfileLocation(const std::string& location) { return true; } CompilerFilter::Filter filter = oat_file->GetCompilerFilter(); - if (filter == CompilerFilter::kSpeed || CompilerFilter::kEverything) { + if ((filter == CompilerFilter::kSpeed) || (filter == CompilerFilter::kEverything)) { VLOG(profiler) - << "Skip profiling oat file because it's already speed|everything compiled:" - << location; + << "Skip profiling oat file because it's already speed|everything compiled: " + << location << " oat location: " << oat_file->GetLocation(); return false; } return true; |