diff options
| author | 2016-06-23 00:39:49 +0000 | |
|---|---|---|
| committer | 2016-06-23 00:39:49 +0000 | |
| commit | ee2d222cc5a2e498540b7f767e76d602efc27178 (patch) | |
| tree | 0ce5a23dce0a8668fe41a0b1014a074cdd981f3f | |
| parent | f4c7dd665807e96f8dbe798558d078e974fc8028 (diff) | |
| parent | d5cc68352e84f33e90a7f8007cd0859c3c1f949d (diff) | |
Merge "Fixed typo in comment."
| -rw-r--r-- | compiler/optimizing/induction_var_analysis.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/induction_var_analysis.cc b/compiler/optimizing/induction_var_analysis.cc index 0a5cf80e9d..52426d73c6 100644 --- a/compiler/optimizing/induction_var_analysis.cc +++ b/compiler/optimizing/induction_var_analysis.cc @@ -670,7 +670,7 @@ void HInductionVarAnalysis::VisitTripCount(HLoopInformation* loop, // an unsigned entity, for example, as in the following loop that uses the full range: // for (int i = INT_MIN; i < INT_MAX; i++) // TC = UINT_MAX // (2) The TC is only valid if the loop is taken, otherwise TC = 0, as in: - // for (int i = 12; i < U; i++) // TC = 0 when U < 12 + // for (int i = 12; i < U; i++) // TC = 0 when U <= 12 // If this cannot be determined at compile-time, the TC is only valid within the // loop-body proper, not the loop-header unless enforced with an explicit taken-test. // (3) The TC is only valid if the loop is finite, otherwise TC has no value, as in: |