Fix comparison in profile saver

Bug: 27893309

(cherry picked from commit d19dc4688b5b93f149d45435deb0a67217464e37)

Change-Id: Ia9968b95dcc0d2c7c209be3ba4f65b6a8adfe688
diff --git a/runtime/jit/profile_saver.cc b/runtime/jit/profile_saver.cc
index 201e4c7..949215a 100644
--- a/runtime/jit/profile_saver.cc
+++ b/runtime/jit/profile_saver.cc
@@ -271,10 +271,10 @@
     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;