Make range_read_iterations_total consistent with others
All checks were successful
Tests / Clang total: 1533, passed: 1533
Clang |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / Debug total: 1531, passed: 1531
Tests / SIMD fallback total: 1533, passed: 1533
Tests / Release [gcc] total: 1533, passed: 1533
GNU C Compiler (gcc) |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / Release [gcc,aarch64] total: 1144, passed: 1144
Tests / Coverage total: 1151, passed: 1151
Code Coverage #### Project Overview No changes detected, that affect the code coverage. * Line Coverage: 98.72% (1695/1717) * Branch Coverage: 64.59% (1503/2327) * Complexity Density: 0.00 * Lines of Code: 1717 #### Quality Gates Summary Output truncated.
weaselab/conflict-set/pipeline/head This commit looks good

This commit is contained in:
2024-07-15 17:23:48 -07:00
parent ebaac253e2
commit 7fd1c9e140

View File

@@ -2706,10 +2706,9 @@ bool checkRangeReadImpl(Node *n, std::span<const uint8_t> begin,
for (;;) {
bool leftDone = checkRangeLeftSide.step();
++range_read_iterations_accum;
bool rightDone = checkRangeRightSide.step();
++range_read_iterations_accum;
if (!leftDone && !rightDone) {
range_read_iterations_accum += 2;
continue;
}
if (leftDone && rightDone) {