diff options
author | 2018-11-07 11:41:01 -0800 | |
---|---|---|
committer | 2018-11-08 08:59:24 -0800 | |
commit | a297b55dd8be424c7cdd4328356431d62e833d8f (patch) | |
tree | 4e1ff9218394e44fc8c99d13d4d6fe92851c6b5f /compiler/optimizing/sharpening.cc | |
parent | a5de05da46e8a93436e68e7e0d242dce46269527 (diff) |
Delete IsClassToCompile
Compiled classes filtering is no longer a thing.
Bug: 26687569
Bug: 76145463
Test: test-art-host
Change-Id: Iaf4b9dcea5d9fe1eae564fbd6d373af2fdc87b14
Diffstat (limited to 'compiler/optimizing/sharpening.cc')
-rw-r--r-- | compiler/optimizing/sharpening.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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<mirror::Class> 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() && |