diff options
author | 2015-10-28 21:01:33 +0000 | |
---|---|---|
committer | 2015-10-28 21:01:33 +0000 | |
commit | d2b29d69a2c301da31a9875c36a599f4bf817816 (patch) | |
tree | 51141f0dab2f32ae36a8b6d18c334d6b1a4955fc /compiler/driver/compiler_driver.h | |
parent | b058de905d73f489c5d24b2833f7d5d4401f513c (diff) | |
parent | 7f43a3d48fc29045875d50e10bbc5d6ffc25d61e (diff) |
Merge "Enable store elimination for singleton objects."
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r-- | compiler/driver/compiler_driver.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index 485cdcfb1b..15806b5579 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -200,8 +200,10 @@ class CompilerDriver { REQUIRES(!Locks::mutator_lock_); // Are runtime access and instantiable checks necessary in the code? - bool CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx, const DexFile& dex_file, - uint32_t type_idx) + bool CanAccessInstantiableTypeWithoutChecks(uint32_t referrer_idx, + const DexFile& dex_file, + uint32_t type_idx, + bool* finalizable) REQUIRES(!Locks::mutator_lock_); bool CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_idx, |