summaryrefslogtreecommitdiff
path: root/compiler/common_compiler_test.cc
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2015-03-28 04:44:36 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-03-28 04:44:37 +0000
commit86787d0bc2c5ad3b9c3b880b0fe2325d2b8bd672 (patch)
tree6de43fc1c1336d18a72f5c205e142e1c6ca1ef5e /compiler/common_compiler_test.cc
parent5c7acfc0b5acc50c60c57934341750f7c776d57e (diff)
parent81c6f8db12b203878a7d72444ead2bc7cf5c47ad (diff)
Merge "ART: PathClassLoader for compiler"
Diffstat (limited to 'compiler/common_compiler_test.cc')
-rw-r--r--compiler/common_compiler_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/common_compiler_test.cc b/compiler/common_compiler_test.cc
index 09be4372a8..d506cc21e9 100644
--- a/compiler/common_compiler_test.cc
+++ b/compiler/common_compiler_test.cc
@@ -178,7 +178,8 @@ void CommonCompilerTest::SetUpRuntimeOptions(RuntimeOptions* options) {
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));
options->push_back(std::make_pair("compilercallbacks", callbacks_.get()));
}