diff options
| author | 2020-08-05 16:47:26 +0000 | |
|---|---|---|
| committer | 2020-08-05 16:47:26 +0000 | |
| commit | a26b2586ba85b3982a04839ff36e6e1bf2ae0623 (patch) | |
| tree | 3fc0c44044e05e23beee712189f6deff8759753e /runtime/jit/jit.h | |
| parent | ef78aa262af911af98c6ba171640f9584aa0caa0 (diff) | |
| parent | b96d6f3846103659249ad58fc905fc5a14dafc47 (diff) | |
Remove tiered jit option. am: b96d6f3846
Original change: https://android-review.googlesource.com/c/platform/art/+/1391217
Change-Id: I0f3ebc8b3a57f011b5b3e9da60859b905c027fa7
Diffstat (limited to 'runtime/jit/jit.h')
| -rw-r--r-- | runtime/jit/jit.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/jit/jit.h b/runtime/jit/jit.h index 5aa53ff8fe..0a5e7d3a08 100644 --- a/runtime/jit/jit.h +++ b/runtime/jit/jit.h @@ -117,10 +117,6 @@ class JitOptions { return use_jit_compilation_; } - bool UseTieredJitCompilation() const { - return use_tiered_jit_compilation_; - } - void SetUseJitCompilation(bool b) { use_jit_compilation_ = b; } @@ -152,7 +148,6 @@ class JitOptions { static uint32_t RoundUpThreshold(uint32_t threshold); bool use_jit_compilation_; - bool use_tiered_jit_compilation_; bool use_baseline_compiler_; size_t code_cache_initial_capacity_; size_t code_cache_max_capacity_; @@ -167,7 +162,6 @@ class JitOptions { JitOptions() : use_jit_compilation_(false), - use_tiered_jit_compilation_(false), use_baseline_compiler_(false), code_cache_initial_capacity_(0), code_cache_max_capacity_(0), |