diff options
| author | 2017-05-31 00:58:06 +0000 | |
|---|---|---|
| committer | 2017-05-31 00:58:07 +0000 | |
| commit | 726e1793d3f54470705e5b84e7860074e029b0ed (patch) | |
| tree | 858cbf9048dff655b878a8f17d8640bbd22c757b /compiler/driver/compiler_driver.h | |
| parent | b28f07bf1058f9138322d9391d914c5763ce53a1 (diff) | |
| parent | 2af99028f508071d5cd056e4ea42e988e0b83e79 (diff) | |
Merge changes I282b25a3,I297f0ad4,I052ac9f7
* changes:
ART: More header cleanup - class_linker.h
ART: More header cleanup - runtime.h
ART: More header cleanup - jni_internal.h
Diffstat (limited to 'compiler/driver/compiler_driver.h')
| -rw-r--r-- | compiler/driver/compiler_driver.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index e0d97b7c16..17c20b48b0 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -38,7 +38,6 @@ #include "method_reference.h" #include "mirror/class.h" // For mirror::Class::Status. #include "os.h" -#include "runtime.h" #include "safe_map.h" #include "thread_pool.h" #include "utils/atomic_method_ref_map.h" @@ -61,6 +60,7 @@ class CompilerOptions; class DexCompilationUnit; struct InlineIGetIPutData; class InstructionSetFeatures; +class InternTable; class ParallelCompilationManager; class ScopedObjectAccess; template <class Allocator> class SrcMap; @@ -131,10 +131,7 @@ class CompilerDriver { REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!compiled_classes_lock_, !dex_to_dex_references_lock_); - VerificationResults* GetVerificationResults() const { - DCHECK(Runtime::Current()->IsAotCompiler()); - return verification_results_; - } + VerificationResults* GetVerificationResults() const; InstructionSet GetInstructionSet() const { return instruction_set_; |