diff options
author | 2018-06-22 11:56:34 +0100 | |
---|---|---|
committer | 2018-06-25 11:41:47 +0100 | |
commit | 213ee2da6a1c58d0fc12c937bbd9c9974ca00aca (patch) | |
tree | bfb5d5ed85473054d863bbaa91a7d9a69a803eec /compiler/verifier_deps_test.cc | |
parent | dc4bccef0ded1c261bf9838def2ef329765a8682 (diff) |
Move dex_files_for_oat_file_ to CompilerOptions.
A step toward removing the CompilerDriver dependency from
several classes, including HSharpening and ImageWriter.
Test: m test-art-host-gtest
Test: testrunner.py --host --optimizing
Change-Id: I364ef66511fdf855cb11b12c818a40572b037727
Diffstat (limited to 'compiler/verifier_deps_test.cc')
-rw-r--r-- | compiler/verifier_deps_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/verifier_deps_test.cc b/compiler/verifier_deps_test.cc index 3fe2ec0ac0..c223549710 100644 --- a/compiler/verifier_deps_test.cc +++ b/compiler/verifier_deps_test.cc @@ -129,7 +129,7 @@ class VerifierDepsTest : public CommonCompilerTest { for (const DexFile* dex_file : dex_files_) { compiler_driver_->GetVerificationResults()->AddDexFile(dex_file); } - compiler_driver_->SetDexFilesForOatFile(dex_files_); + SetDexFilesForOatFile(dex_files_); } void LoadDexFile(ScopedObjectAccess& soa) REQUIRES_SHARED(Locks::mutator_lock_) { |