forked from weaselab/conflict-set
Make range_read_iterations_total consistent with others
This commit is contained in:
+1
-2
@@ -2706,10 +2706,9 @@ bool checkRangeReadImpl(Node *n, std::span<const uint8_t> begin,
|
|||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
bool leftDone = checkRangeLeftSide.step();
|
bool leftDone = checkRangeLeftSide.step();
|
||||||
++range_read_iterations_accum;
|
|
||||||
bool rightDone = checkRangeRightSide.step();
|
bool rightDone = checkRangeRightSide.step();
|
||||||
++range_read_iterations_accum;
|
|
||||||
if (!leftDone && !rightDone) {
|
if (!leftDone && !rightDone) {
|
||||||
|
range_read_iterations_accum += 2;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (leftDone && rightDone) {
|
if (leftDone && rightDone) {
|
||||||
|
|||||||
Reference in New Issue
Block a user