diff options
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r-- | compiler/driver/compiler_options.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h index 20f54bdecd..1afa2c5d34 100644 --- a/compiler/driver/compiler_options.h +++ b/compiler/driver/compiler_options.h @@ -49,7 +49,6 @@ class DexFile; enum class InstructionSet; class InstructionSetFeatures; class ProfileCompilationInfo; -class VerificationResults; // Enum for CheckProfileMethodsCompiled. Outside CompilerOptions so it can be forward-declared. enum class ProfileMethodsCheck : uint8_t { @@ -305,8 +304,6 @@ class CompilerOptions final { // classes. `pretty_descriptor` should be the result of calling `PrettyDescriptor`. bool IsPreloadedClass(const char* pretty_descriptor) const; - const VerificationResults* GetVerificationResults() const; - bool ParseCompilerOptions(const std::vector<std::string>& options, bool ignore_unrecognized, std::string* error_msg); @@ -423,9 +420,6 @@ class CompilerOptions final { // boot image extension compilation. HashSet<std::string> preloaded_classes_; - // Results of AOT verification. - const VerificationResults* verification_results_; - CompilerType compiler_type_; ImageType image_type_; bool multi_image_; |