summaryrefslogtreecommitdiff
path: root/compiler/jit/jit_compiler.cc
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2015-07-23 01:19:26 -0700
committer Andreas Gampe <agampe@google.com> 2015-08-05 11:32:52 -0700
commit5eb0d38dabda4d17a315c557f07f457308d28fa7 (patch)
tree16c28cf7d8c1f27ae1daf813b8cfbc29aa0ff193 /compiler/jit/jit_compiler.cc
parent46e0f460aa233a4a0ac161bfafde164357fe2b26 (diff)
ART: Wire up DexToDexCompiler without extern
The extern declaration actually had the wrong signature, a parameter was missing, and we never noticed. Remove the function field and extern. Add a header for the compiler. Use the header file. Change-Id: Ia4d4dd86211da6045709a45c7bf8430471d1b62b
Diffstat (limited to 'compiler/jit/jit_compiler.cc')
-rw-r--r--compiler/jit/jit_compiler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/jit/jit_compiler.cc b/compiler/jit/jit_compiler.cc
index c95bac24fd..4215f3cdd3 100644
--- a/compiler/jit/jit_compiler.cc
+++ b/compiler/jit/jit_compiler.cc
@@ -153,7 +153,7 @@ bool JitCompiler::CompileMethod(Thread* self, ArtMethod* method) {
CompiledMethod* compiled_method = nullptr;
{
TimingLogger::ScopedTiming t2("Compiling", &logger);
- compiled_method = compiler_driver_->CompileMethod(self, method);
+ compiled_method = compiler_driver_->CompileArtMethod(self, method);
}
{
TimingLogger::ScopedTiming t2("TrimMaps", &logger);