summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_driver.cc
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2017-09-05 23:01:02 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-09-05 23:01:02 +0000
commit28f53f57265134a9eac2dd3fe7782056357ce4fb (patch)
tree64ca841bef8f6e030e03548044ebe924d279598f /compiler/driver/compiler_driver.cc
parent901679cbdf4c0179d784313c10285de8c21abc93 (diff)
parentd3ea5b3d7f6a829fba5979657ee8af9d8b2a7fdb (diff)
Merge changes I66c62317,Id097273a,If3bfe695
* changes: ART: Recognize compile-time soft-fails ART: Change CanAssumeVerified to GetPreviousClassState ART: Move Class::Status to ClassStatus
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
-rw-r--r--compiler/driver/compiler_driver.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc
index ee36a92c17..18b54eefba 100644
--- a/compiler/driver/compiler_driver.cc
+++ b/compiler/driver/compiler_driver.cc
@@ -3053,10 +3053,4 @@ void CompilerDriver::SetDexFilesForOatFile(const std::vector<const DexFile*>& de
}
}
-bool CompilerDriver::CanAssumeVerified(ClassReference ref) const {
- mirror::Class::Status existing = mirror::Class::kStatusNotReady;
- compiled_classes_.Get(DexFileReference(ref.first, ref.second), &existing);
- return existing >= mirror::Class::kStatusVerified;
-}
-
} // namespace art