diff options
Diffstat (limited to 'compiler/compiler.h')
-rw-r--r-- | compiler/compiler.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/compiler.h b/compiler/compiler.h index cd4c59101e..6c542c841a 100644 --- a/compiler/compiler.h +++ b/compiler/compiler.h @@ -17,14 +17,15 @@ #ifndef ART_COMPILER_COMPILER_H_ #define ART_COMPILER_COMPILER_H_ -#include "dex_file.h" #include "base/mutex.h" +#include "dex_file.h" #include "os.h" namespace art { namespace jit { class JitCodeCache; + class JitLogger; } // namespace jit namespace mirror { class ClassLoader; @@ -76,7 +77,8 @@ class Compiler { virtual bool JitCompile(Thread* self ATTRIBUTE_UNUSED, jit::JitCodeCache* code_cache ATTRIBUTE_UNUSED, ArtMethod* method ATTRIBUTE_UNUSED, - bool osr ATTRIBUTE_UNUSED) + bool osr ATTRIBUTE_UNUSED, + jit::JitLogger* jit_logger ATTRIBUTE_UNUSED) REQUIRES_SHARED(Locks::mutator_lock_) { return false; } |