summaryrefslogtreecommitdiffstats
path: root/compiler/jit/jit_compiler.cc
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-03-28 04:44:36 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-03-28 04:44:37 +0000
commit86787d0bc2c5ad3b9c3b880b0fe2325d2b8bd672 (patch)
tree6de43fc1c1336d18a72f5c205e142e1c6ca1ef5e /compiler/jit/jit_compiler.cc
parent5c7acfc0b5acc50c60c57934341750f7c776d57e (diff)
parent81c6f8db12b203878a7d72444ead2bc7cf5c47ad (diff)
downloadart-86787d0bc2c5ad3b9c3b880b0fe2325d2b8bd672.tar.gz
art-86787d0bc2c5ad3b9c3b880b0fe2325d2b8bd672.tar.bz2
art-86787d0bc2c5ad3b9c3b880b0fe2325d2b8bd672.zip
Merge "ART: PathClassLoader for compiler"
Diffstat (limited to 'compiler/jit/jit_compiler.cc')
-rw-r--r--compiler/jit/jit_compiler.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/jit/jit_compiler.cc b/compiler/jit/jit_compiler.cc
index 8b311542f6..d034736f95 100644
--- a/compiler/jit/jit_compiler.cc
+++ b/compiler/jit/jit_compiler.cc
@@ -89,7 +89,8 @@ JitCompiler::JitCompiler() : total_time_(0) {
verification_results_.reset(new VerificationResults(compiler_options_.get()));
method_inliner_map_.reset(new DexFileToMethodInlinerMap);
callbacks_.reset(new QuickCompilerCallbacks(verification_results_.get(),
- method_inliner_map_.get()));
+ method_inliner_map_.get(),
+ false));
compiler_driver_.reset(new CompilerDriver(
compiler_options_.get(), verification_results_.get(), method_inliner_map_.get(),
Compiler::kQuick, instruction_set, instruction_set_features_.get(), false,