summaryrefslogtreecommitdiff
path: root/dex2oat/dex/quick_compiler_callbacks.cc
diff options
context:
space:
mode:
author Santiago Aboy Solanes <solanes@google.com> 2023-06-28 14:22:48 +0100
committer Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2023-07-06 10:38:01 +0000
commit5b65e02b1cdce48da11a972ab6d75a7fb5c859bd (patch)
treeeb8bbf8bc23f669114760675ca131057f7e7188b /dex2oat/dex/quick_compiler_callbacks.cc
parentaaf05154a31fe0b326795436ec8077d5d3469fef (diff)
Remove code related to quicken
It was obsolete (and in some cases dead code). Update our code to use `verify` instead of `quicken` for compiler filters. Bug: 289199192 Change-Id: I39048d50b4d8a3f48e0e88e752a2fd7ad73559a7
Diffstat (limited to 'dex2oat/dex/quick_compiler_callbacks.cc')
-rw-r--r--dex2oat/dex/quick_compiler_callbacks.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/dex2oat/dex/quick_compiler_callbacks.cc b/dex2oat/dex/quick_compiler_callbacks.cc
index 7611374561..c3b1c9b530 100644
--- a/dex2oat/dex/quick_compiler_callbacks.cc
+++ b/dex2oat/dex/quick_compiler_callbacks.cc
@@ -47,8 +47,6 @@ ClassStatus QuickCompilerCallbacks::GetPreviousClassState(ClassReference ref) {
return ClassStatus::kNotReady;
}
DCHECK(compiler_driver_ != nullptr);
- // In the case of the quicken filter: avoiding verification of quickened instructions, which the
- // verifier doesn't currently support.
// In the case of the verify filter, avoiding verifiying twice.
return compiler_driver_->GetClassStatus(ref);
}