diff options
author | 2018-01-24 08:56:59 +0000 | |
---|---|---|
committer | 2018-01-24 08:56:59 +0000 | |
commit | b95eb37a04874a57046fba7fc09a8b197691e9a2 (patch) | |
tree | 547fb453899b546223dde08238e25cba3dc5fb0a /compiler/driver/compiler_driver.h | |
parent | f60b4c80e01b21da2228d35bc20309913065565d (diff) | |
parent | f30752709e1131ae1a4c16f22cc7a0960c198e77 (diff) |
Merge "Revert "Revert "Don't embed the dex code in the oat file if dex is uncompressed."""
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r-- | compiler/driver/compiler_driver.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index 4b5916d572..18b1e0ea3c 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -110,13 +110,13 @@ class CompilerDriver { ~CompilerDriver(); - // Set dex files that will be stored in the oat file after being compiled. + // Set dex files associated with the oat file being compiled. void SetDexFilesForOatFile(const std::vector<const DexFile*>& dex_files); // Set dex files classpath. void SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files); - // Get dex file that will be stored in the oat file after being compiled. + // Get dex files associated with the the oat file being compiled. ArrayRef<const DexFile* const> GetDexFilesForOatFile() const { return ArrayRef<const DexFile* const>(dex_files_for_oat_file_); } @@ -533,7 +533,7 @@ class CompilerDriver { bool support_boot_image_fixup_; - // List of dex files that will be stored in the oat file. + // List of dex files associates with the oat file. std::vector<const DexFile*> dex_files_for_oat_file_; CompiledMethodStorage compiled_method_storage_; |