summaryrefslogtreecommitdiff
path: root/compiler/optimizing/loop_optimization.h
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2016-11-04 17:42:31 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-11-04 17:42:32 +0000
commitb85fd6fd73aa65bf0d65a1034ea2b6ed748a6a51 (patch)
treea5d270b0c42347f35f54f36d7612b89bc8c1b3a9 /compiler/optimizing/loop_optimization.h
parent4f27f0baff46c46ed5c5b9387e036e39460d3f50 (diff)
parent807868eac75a39e79ee6309ed4cbe038407efa29 (diff)
Merge "Account for early exit loop."
Diffstat (limited to 'compiler/optimizing/loop_optimization.h')
-rw-r--r--compiler/optimizing/loop_optimization.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/optimizing/loop_optimization.h b/compiler/optimizing/loop_optimization.h
index e18d17531e..3391bef4e9 100644
--- a/compiler/optimizing/loop_optimization.h
+++ b/compiler/optimizing/loop_optimization.h
@@ -72,9 +72,7 @@ class HLoopOptimization : public HOptimization {
HInstruction* instruction,
/*out*/ int32_t* use_count);
void ReplaceAllUses(HInstruction* instruction, HInstruction* replacement);
- bool TryReplaceWithLastValue(HInstruction* instruction,
- int32_t use_count,
- HBasicBlock* block);
+ bool TryReplaceWithLastValue(HInstruction* instruction, HBasicBlock* block);
// Range information based on prior induction variable analysis.
InductionVarRange induction_range_;