From 6bb7f1b60f4b6b2214457d19d66d2b7b50685feb Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Thu, 3 Nov 2016 10:52:49 +0000 Subject: Integrate VerifierDeps in compiler driver. If a VerifierDeps is given, try fast verify. Otherwise create a new VerifierDeps and do the full verification. test: test-art-host, verifier_deps_test bug: 30937355 Change-Id: Ifb030d7b5232c95872164f601057a56ab96038e1 --- compiler/image_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/image_test.cc') diff --git a/compiler/image_test.cc b/compiler/image_test.cc index 8fdf6fca68..fcb8979459 100644 --- a/compiler/image_test.cc +++ b/compiler/image_test.cc @@ -189,7 +189,7 @@ 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, &timings); + driver->CompileAll(class_loader, class_path, /* verifier_deps */ nullptr, &timings); t.NewTiming("WriteElf"); SafeMap key_value_store; -- cgit v1.2.3-59-g8ed1b