diff options
author | 2016-09-30 14:10:21 +0000 | |
---|---|---|
committer | 2016-09-30 14:10:21 +0000 | |
commit | 428792553e59452d0b6fdbf2460072d697c966db (patch) | |
tree | c4d3c14944e772cd98f2fd76e4f41c2fbc3f6acf /compiler/driver/compiler_driver.h | |
parent | ce157a6864bd346152bef1b66d050cfb144f56b5 (diff) | |
parent | 63dccbbefef3014c99c22748d18befcc7bcb3b41 (diff) |
Merge "Store resolved Strings for AOT code in .bss."
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r-- | compiler/driver/compiler_driver.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index 52a04cc46b..eb1222c315 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -90,8 +90,6 @@ class CompilerDriver { Compiler::Kind compiler_kind, InstructionSet instruction_set, const InstructionSetFeatures* instruction_set_features, - bool boot_image, - bool app_image, std::unordered_set<std::string>* image_classes, std::unordered_set<std::string>* compiled_classes, std::unordered_set<std::string>* compiled_methods, @@ -147,11 +145,6 @@ class CompilerDriver { return compiler_.get(); } - // Are we compiling and creating an image file? - bool IsBootImage() const { - return boot_image_; - } - const std::unordered_set<std::string>* GetImageClasses() const { return image_classes_.get(); } @@ -628,9 +621,6 @@ class CompilerDriver { // in the .oat_patches ELF section if requested in the compiler options. size_t non_relative_linker_patch_count_ GUARDED_BY(compiled_methods_lock_); - const bool boot_image_; - const bool app_image_; - // If image_ is true, specifies the classes that will be included in the image. // Note if image_classes_ is null, all classes are included in the image. std::unique_ptr<std::unordered_set<std::string>> image_classes_; |