diff options
author | 2018-12-13 23:30:14 +0000 | |
---|---|---|
committer | 2018-12-13 23:30:14 +0000 | |
commit | 344b0d18eb9f9f2f2ef704acadc510a6dd56a282 (patch) | |
tree | 5f0bc1ce634ad2e6e9a508b5f5478dd66590aff1 /compiler/jit/jit_compiler.h | |
parent | e734fe8d4aa5f70a5798363774a4ed63357ebe20 (diff) |
Revert "Add a baseline flag to JIT compile."
This reverts commit e734fe8d4aa5f70a5798363774a4ed63357ebe20.
Reason for revert: May be breaking tests.
Change-Id: I6c0c04a60c1b4f329c472d28a3c2666526bd6383
Diffstat (limited to 'compiler/jit/jit_compiler.h')
-rw-r--r-- | compiler/jit/jit_compiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/jit/jit_compiler.h b/compiler/jit/jit_compiler.h index 29d2761348..d201611d79 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 baseline, bool osr) + bool CompileMethod(Thread* self, ArtMethod* method, bool osr) REQUIRES_SHARED(Locks::mutator_lock_); const CompilerOptions& GetCompilerOptions() const { |