diff options
Diffstat (limited to 'compiler/jit/jit_compiler.h')
-rw-r--r-- | compiler/jit/jit_compiler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/jit/jit_compiler.h b/compiler/jit/jit_compiler.h index 09de1f8681..9dd84f0e0a 100644 --- a/compiler/jit/jit_compiler.h +++ b/compiler/jit/jit_compiler.h @@ -18,6 +18,7 @@ #define ART_COMPILER_JIT_JIT_COMPILER_H_ #include "base/mutex.h" +#include "compilation_kind.h" #include "jit/jit.h" @@ -40,7 +41,7 @@ class JitCompiler : public JitCompilerInterface { // Compilation entrypoint. Returns whether the compilation succeeded. bool CompileMethod( - Thread* self, JitMemoryRegion* region, ArtMethod* method, bool baseline, bool osr) + Thread* self, JitMemoryRegion* region, ArtMethod* method, CompilationKind kind) REQUIRES_SHARED(Locks::mutator_lock_) override; const CompilerOptions& GetCompilerOptions() const { |