diff options
| author | 2014-02-21 16:40:21 +0000 | |
|---|---|---|
| committer | 2014-02-21 09:00:50 -0800 | |
| commit | 9c86a0279aaf953377aa9e2277592e68bf814989 (patch) | |
| tree | bb9c9ae4b6916d89d0f95c6cf4a654ad0b469e9c /compiler/driver/compiler_driver.cc | |
| parent | bf5b4b3a2d216e1dc7f693bf8efe223472136bb0 (diff) | |
Revert "Annotate used fields."
This reverts commit 7f6cf56942c8469958b273ea968db253051c5b05.
Change-Id: Ic389a194c3404ecb5bb563a405bf4a0d6336ea0d
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
| -rw-r--r-- | compiler/driver/compiler_driver.cc | 18 | 
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) |