Improve next{Physical,Logical} codegen
All checks were successful
Tests / 64 bit versions total: 7949, passed: 7949
Tests / Debug total: 7947, passed: 7947
Tests / SIMD fallback total: 7949, passed: 7949
Tests / Release [clang] total: 7949, passed: 7949
Clang |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / Release [gcc] total: 7949, passed: 7949
GNU C Compiler (gcc) |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / Release [clang,aarch64] total: 5268, passed: 5268
Tests / Coverage total: 5315, passed: 5315
Code Coverage #### Project Overview No changes detected, that affect the code coverage. * Line Coverage: 97.67% (3139/3214) * Branch Coverage: 42.05% (18734/44548) * Complexity Density: 0.00 * Lines of Code: 3214 #### Quality Gates Summary Output truncated.
weaselab/conflict-set/pipeline/head This commit looks good

This commit is contained in:
2024-11-09 13:14:48 -08:00
parent 3c44614311
commit f85b92f8db

View File

@@ -1734,7 +1734,7 @@ Node *nextPhysical(Node *node) {
if (node == nullptr) {
return nullptr;
}
auto nextChild = getChildGeq(node, index + 1);
Node *nextChild = getChildGeq(node, index + 1);
if (nextChild != nullptr) {
return nextChild;
}
@@ -1753,7 +1753,7 @@ Node *nextLogical(Node *node) {
if (node == nullptr) {
return nullptr;
}
auto nextChild = getChildGeq(node, index + 1);
Node *nextChild = getChildGeq(node, index + 1);
if (nextChild != nullptr) {
node = nextChild;
goto downLeftSpine;