diff options
| author | 2015-11-05 08:47:52 +0000 | |
|---|---|---|
| committer | 2015-11-05 08:48:36 +0000 | |
| commit | 4b018565e57c3349a3c1b5ec8ac9dae261c5e00b (patch) | |
| tree | ee1ea3271d41b9a647a7ce7e4d1a0ed94eff9fcf /compiler/driver/compiler_driver.h | |
| parent | c033474cfbfe1e963c07fa5c38aed02e35ed6f91 (diff) | |
Revert "Add basic image writer support for app images"
interpreter and jit tests fail.
Bug: 22858531
This reverts commit c033474cfbfe1e963c07fa5c38aed02e35ed6f91.
Change-Id: Ic12a3e2a1908ac0db52d21a0b44b2508c88b2585
Diffstat (limited to 'compiler/driver/compiler_driver.h')
| -rw-r--r-- | compiler/driver/compiler_driver.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index 15b6bba270..4ed4dc60d2 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -92,7 +92,7 @@ class CompilerDriver { Compiler::Kind compiler_kind, InstructionSet instruction_set, const InstructionSetFeatures* instruction_set_features, - bool boot_image, std::unordered_set<std::string>* image_classes, + bool image, std::unordered_set<std::string>* image_classes, std::unordered_set<std::string>* compiled_classes, std::unordered_set<std::string>* compiled_methods, size_t thread_count, bool dump_stats, bool dump_passes, @@ -156,8 +156,8 @@ class CompilerDriver { } // Are we compiling and creating an image file? - bool IsBootImage() const { - return boot_image_; + bool IsImage() const { + return image_; } const std::unordered_set<std::string>* GetImageClasses() const { @@ -637,7 +637,7 @@ 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 image_; // If image_ is true, specifies the classes that will be included in // the image. Note if image_classes_ is null, all classes are |