Fix USE_SIMD_FALLBACK build

This commit is contained in:
2024-10-10 15:56:16 -07:00
parent 31ad3e8e1c
commit b51ef97c71
+1 -1
View File
@@ -2430,7 +2430,7 @@ bool checkMaxBetweenExclusiveImpl(Node *n, int begin, int end,
if (!mask) {
return true;
}
auto *child = self->children[std::countr_zero(mask)];
Node *child = self->children[std::countr_zero(mask)];
const bool firstRangeOk =
!child->entryPresent || child->entry.rangeVersion <= readVersion;
uint32_t compared = 0;