summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_options.h
diff options
context:
space:
mode:
author Jeff Hao <jeffhao@google.com> 2015-03-03 23:32:31 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-03-03 23:32:32 +0000
commit86a4db469e9ab31d6574a58fe67702c7fc5222d7 (patch)
tree957eae3e59861671b7043640d68958c6b80a4989 /compiler/driver/compiler_options.h
parent0e5e728a4a4f042f157e1897cc8bbc2b0bb110b1 (diff)
parentf3c7ba6a5759873138fbf4ae24a216dc0d87a3fe (diff)
Merge "Remove ART_SMALL_MODE ifdefs."
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r--compiler/driver/compiler_options.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h
index 122ae4b575..0683d185e6 100644
--- a/compiler/driver/compiler_options.h
+++ b/compiler/driver/compiler_options.h
@@ -41,11 +41,7 @@ class CompilerOptions FINAL {
};
// Guide heuristics to determine whether to compile method if profile data not available.
-#if ART_SMALL_MODE
- static const CompilerFilter kDefaultCompilerFilter = kInterpretOnly;
-#else
static const CompilerFilter kDefaultCompilerFilter = kSpeed;
-#endif
static const size_t kDefaultHugeMethodThreshold = 10000;
static const size_t kDefaultLargeMethodThreshold = 600;
static const size_t kDefaultSmallMethodThreshold = 60;