diff options
author | 2015-02-23 15:32:43 -0800 | |
---|---|---|
committer | 2015-03-02 18:29:58 -0800 | |
commit | f3c7ba6a5759873138fbf4ae24a216dc0d87a3fe (patch) | |
tree | f2acaf88a41bc9237fabc8234b5bf4a8e6bb7ac1 /compiler/driver/compiler_options.h | |
parent | f5c224cca603ef1dba9bb80952613facc22598fa (diff) |
Remove ART_SMALL_MODE ifdefs.
WITH_ART_SMART_MODE now sets --compiler-filter options instead.
Has a corresponding change to /build
Bug: 19460766
Change-Id: I295ebbd49caa5341834141f7c2bbf8df830131ed
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r-- | compiler/driver/compiler_options.h | 4 |
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; |