summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_driver.cc
diff options
context:
space:
mode:
author Ian Rogers <irogers@google.com> 2014-02-21 17:24:49 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-02-21 17:24:50 +0000
commitab70b7cbd2359cd2a291ebc0d0729822d09660ef (patch)
treebb9c9ae4b6916d89d0f95c6cf4a654ad0b469e9c /compiler/driver/compiler_driver.cc
parentbf5b4b3a2d216e1dc7f693bf8efe223472136bb0 (diff)
parent9c86a0279aaf953377aa9e2277592e68bf814989 (diff)
Merge "Revert "Annotate used fields.""
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
-rw-r--r--compiler/driver/compiler_driver.cc18
1 files changed, 0 insertions, 18 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc
index c7bf952c53..5adb792497 100644
--- a/compiler/driver/compiler_driver.cc
+++ b/compiler/driver/compiler_driver.cc
@@ -881,24 +881,6 @@ bool CompilerDriver::CanEmbedTypeInCode(const DexFile& dex_file, uint32_t type_i
}
}
-void CompilerDriver::ProcessedInstanceField(bool resolved) {
- if (!resolved) {
- stats_->UnresolvedInstanceField();
- } else {
- stats_->ResolvedInstanceField();
- }
-}
-
-void CompilerDriver::ProcessedStaticField(bool resolved, bool local) {
- if (!resolved) {
- stats_->UnresolvedStaticField();
- } else if (local) {
- stats_->ResolvedLocalStaticField();
- } else {
- stats_->ResolvedStaticField();
- }
-}
-
static mirror::Class* ComputeCompilingMethodsClass(ScopedObjectAccess& soa,
SirtRef<mirror::DexCache>& dex_cache,
const DexCompilationUnit* mUnit)