diff options
author | 2017-05-24 14:44:38 +0100 | |
---|---|---|
committer | 2017-06-14 10:53:48 +0100 | |
commit | 1cfea7af6f38cd06393fed3e466701869ce8b2c3 (patch) | |
tree | 3e3b185eeb4ce0c6a2cc3184e0305f37151261c2 /compiler/image_test.h | |
parent | d38b67c9892b603f57a6b51a1b9d7f4e610158aa (diff) |
Code cleanup around vdex.
1) Handle the vdex in dex2oat instead of compiler_driver
2) CHECK instead of DCHECK that we don't dexlayout with vdex.
Test: test.py
Change-Id: Idf7be59bb25708181e391d17128480659ac697e5
Diffstat (limited to 'compiler/image_test.h')
-rw-r--r-- | compiler/image_test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/image_test.h b/compiler/image_test.h index 3d89757d51..fa714ada6c 100644 --- a/compiler/image_test.h +++ b/compiler/image_test.h @@ -220,7 +220,7 @@ inline void CompilationHelper::Compile(CompilerDriver* driver, TimingLogger timings("ImageTest::WriteRead", false, false); TimingLogger::ScopedTiming t("CompileAll", &timings); driver->SetDexFilesForOatFile(class_path); - driver->CompileAll(class_loader, class_path, /* verifier_deps */ nullptr, &timings); + driver->CompileAll(class_loader, class_path, &timings); t.NewTiming("WriteElf"); SafeMap<std::string, std::string> key_value_store; |