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

View File

@ -99,7 +99,8 @@ class UnknownVisitor final : public VNVisitor {
AstNodeExpr* prep = nodep;
// 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);
}
FileLine* const fl = nodep->fileline();

0
test_regress/t/t_struct_array_assignment_delayed.py Normal file → Executable file
View File