diff options
| -rw-r--r-- | runtime/jit/jit_code_cache.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/jit/jit_code_cache.cc b/runtime/jit/jit_code_cache.cc index 6348ddad58..478b164597 100644 --- a/runtime/jit/jit_code_cache.cc +++ b/runtime/jit/jit_code_cache.cc @@ -126,6 +126,8 @@ JitCodeCache::JitCodeCache(MemMap* code_map, has_done_full_collection_(false), last_update_time_ns_(0), garbage_collect_code_(garbage_collect_code), + used_memory_for_data_(0), + used_memory_for_code_(0), number_of_compilations_(0) { DCHECK_GE(max_capacity, initial_code_capacity + initial_data_capacity); |