Apply 'make format'

This commit is contained in:
github action
2024-11-24 03:02:04 +00:00
parent 24b5c641f5
commit 0d5fedce92
2 changed files with 2 additions and 1 deletions
+2 -1
View File
@@ -99,7 +99,8 @@ class UnknownVisitor final : public VNVisitor {
AstNodeExpr* prep = nodep; AstNodeExpr* prep = nodep;
// Scan back to put the condlvalue above all selects (IE top of the lvalue) // Scan back to put the condlvalue above all selects (IE top of the lvalue)
while (VN_IS(prep->backp(), NodeSel) || VN_IS(prep->backp(), Sel) || VN_IS(prep->backp(), StructSel)) { while (VN_IS(prep->backp(), NodeSel) || VN_IS(prep->backp(), Sel)
|| VN_IS(prep->backp(), StructSel)) {
prep = VN_AS(prep->backp(), NodeExpr); prep = VN_AS(prep->backp(), NodeExpr);
} }
FileLine* const fl = nodep->fileline(); FileLine* const fl = nodep->fileline();
View File