diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2015-04-21 16:04:32 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2015-04-21 16:04:32 +0000 |
commit | 0cdf6d31b6e8b39b56deba92336383f43fba9c0f (patch) | |
tree | 21bea01160e2470609405a72e8df8b186456a13d /compiler/optimizing/dead_code_elimination.cc | |
parent | 7a9c885684c965fe84f91d8ad74f54f869e2a448 (diff) | |
download | android_art-0cdf6d31b6e8b39b56deba92336383f43fba9c0f.tar.gz android_art-0cdf6d31b6e8b39b56deba92336383f43fba9c0f.tar.bz2 android_art-0cdf6d31b6e8b39b56deba92336383f43fba9c0f.zip |
Revert "Run DCE again after all the other optimizations have run."
Reverting because of libcore failures.
This reverts commit 7a9c885684c965fe84f91d8ad74f54f869e2a448.
Change-Id: Iafe59b02fe7617243d81533d66e609a3528e7a58
Diffstat (limited to 'compiler/optimizing/dead_code_elimination.cc')
-rw-r--r-- | compiler/optimizing/dead_code_elimination.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/optimizing/dead_code_elimination.cc b/compiler/optimizing/dead_code_elimination.cc index 8045cc5027..94990402e5 100644 --- a/compiler/optimizing/dead_code_elimination.cc +++ b/compiler/optimizing/dead_code_elimination.cc @@ -41,7 +41,6 @@ void HDeadCodeElimination::Run() { && !inst->IsMemoryBarrier() // If we added an explicit barrier then we should keep it. && !inst->HasUses()) { block->RemoveInstruction(inst); - MaybeRecordStat(MethodCompilationStat::kRemovedDeadInstruction); } } } |