summaryrefslogtreecommitdiff
path: root/compiler/jit/jit_compiler.h
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2018-12-12 16:00:10 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2018-12-12 16:29:52 +0000
commite734fe8d4aa5f70a5798363774a4ed63357ebe20 (patch)
tree9cc40d68cf2b053a2bcec7fc026e10bb12d5ee93 /compiler/jit/jit_compiler.h
parent5af086c98d46d7833a064c5015c5503fc5dd29f3 (diff)
Add a baseline flag to JIT compile.
bug: 111397239 bug: 119800099 Test: m Change-Id: Id831b641e18a8497435839e2fbcfee1f6d60a56d
Diffstat (limited to 'compiler/jit/jit_compiler.h')
-rw-r--r--compiler/jit/jit_compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/jit/jit_compiler.h b/compiler/jit/jit_compiler.h
index d201611d79..29d2761348 100644
--- a/compiler/jit/jit_compiler.h
+++ b/compiler/jit/jit_compiler.h
@@ -37,7 +37,7 @@ class JitCompiler {
virtual ~JitCompiler();
// Compilation entrypoint. Returns whether the compilation succeeded.
- bool CompileMethod(Thread* self, ArtMethod* method, bool osr)
+ bool CompileMethod(Thread* self, ArtMethod* method, bool baseline, bool osr)
REQUIRES_SHARED(Locks::mutator_lock_);
const CompilerOptions& GetCompilerOptions() const {