diff options
author | 2017-12-19 22:55:03 +0000 | |
---|---|---|
committer | 2017-12-19 22:55:03 +0000 | |
commit | a6615945258f003756ce7f344670a2802fad7037 (patch) | |
tree | ebeb5b97ff910ec282c4d32104d73a4372979051 /compiler/driver/compiler_driver.h | |
parent | 69b2560d6aa74b38cbbd22b8fdabbfb38e814835 (diff) | |
parent | e166e67666bf4b23e4ed0a98f5e2bb3cae9cee7d (diff) |
Merge "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 07b65438b0..e001726c95 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -102,13 +102,13 @@ class CompilerDriver { ~CompilerDriver(); - // Set dex files associated with the oat file being compiled. + // Set dex files that will be stored in the oat file after 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 files associated with the the oat file being compiled. + // Get dex file that will be stored in the oat file after being compiled. ArrayRef<const DexFile* const> GetDexFilesForOatFile() const { return ArrayRef<const DexFile* const>(dex_files_for_oat_file_); } @@ -525,7 +525,7 @@ class CompilerDriver { bool support_boot_image_fixup_; - // List of dex files associates with the oat file. + // List of dex files that will be stored in the oat file. std::vector<const DexFile*> dex_files_for_oat_file_; CompiledMethodStorage compiled_method_storage_; |