summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
author Dave Allison <dallison@google.com> 2014-04-10 21:20:57 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-04-10 21:20:57 +0000
commita5cb220ed5d92a2022efa5e6c643d1a12f77c77c (patch)
tree68f41d07551c56ac51c189f26f9fc863c656da83 /compiler
parente81a7c314afc8f92afcdbc3cbc2331afca7dcb3d (diff)
parent644789fa0e807a9aa6d6e32d36ce039ec7318a7f (diff)
Merge "Fix problem with empty profiles."
Diffstat (limited to 'compiler')
-rw-r--r--compiler/driver/compiler_driver.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc
index b66082dedd..2b20c6fc75 100644
--- a/compiler/driver/compiler_driver.cc
+++ b/compiler/driver/compiler_driver.cc
@@ -2036,7 +2036,7 @@ void CompilerDriver::InstructionSetToLLVMTarget(InstructionSet instruction_set,
bool CompilerDriver::SkipCompilation(const std::string& method_name) {
if (!profile_ok_) {
- return true;
+ return false;
}
// Methods that comprise topKPercentThreshold % of the total samples will be compiled.
double topKPercentThreshold = 90.0;