From 6be1dbd3bc34b2cfa0fe257acbea273f1b6f4a53 Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Tue, 13 Nov 2018 13:09:51 +0000 Subject: ART: Rewrite core image detection. Remove unused compiler option `core_image_` and cache the IsCompilingWithCoreImage in the CompilerOptions instead. Test: m test-art-host-gtest Test: testrunner.py --host --optimizing Change-Id: Idcf3b6c96dab9a39f823a16778e7698589442cd8 --- compiler/driver/compiler_options.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/driver/compiler_options.cc') diff --git a/compiler/driver/compiler_options.cc b/compiler/driver/compiler_options.cc index be8e10e41e..685cde338b 100644 --- a/compiler/driver/compiler_options.cc +++ b/compiler/driver/compiler_options.cc @@ -45,8 +45,8 @@ CompilerOptions::CompilerOptions() dex_files_for_oat_file_(), image_classes_(), boot_image_(false), - core_image_(false), app_image_(false), + compiling_with_core_image_(false), baseline_(false), debuggable_(false), generate_debug_info_(kDefaultGenerateDebugInfo), -- cgit v1.2.3-59-g8ed1b