From a297b55dd8be424c7cdd4328356431d62e833d8f Mon Sep 17 00:00:00 2001 From: Mathieu Chartier Date: Wed, 7 Nov 2018 11:41:01 -0800 Subject: Delete IsClassToCompile Compiled classes filtering is no longer a thing. Bug: 26687569 Bug: 76145463 Test: test-art-host Change-Id: Iaf4b9dcea5d9fe1eae564fbd6d373af2fdc87b14 --- compiler/optimizing/sharpening.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/optimizing') diff --git a/compiler/optimizing/sharpening.cc b/compiler/optimizing/sharpening.cc index c864951a47..885a08d459 100644 --- a/compiler/optimizing/sharpening.cc +++ b/compiler/optimizing/sharpening.cc @@ -233,7 +233,7 @@ static inline bool CanUseTypeCheckBitstring(ObjPtr klass, CodeGen // Try to assign a type check bitstring. MutexLock subtype_check_lock(Thread::Current(), *Locks::subtype_check_lock_); - if ((false) && // FIXME: Inliner does not respect CompilerDriver::IsClassToCompile() + if ((false) && // FIXME: Inliner does not respect CompilerDriver::ShouldCompileMethod() // and we're hitting an unassigned bitstring in dex2oat_image_test. b/26687569 kIsDebugBuild && codegen->GetCompilerOptions().IsBootImage() && -- cgit v1.2.3-59-g8ed1b