pform_makewire(): Fix indentation

The assignment handling block uses space-based indentation that does not match
the surrounding code.

Fix the indentation before changing the block.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
This commit is contained in:
Lars-Peter Clausen 2026-05-17 11:05:02 -07:00
parent 86546b5960
commit e7934d5e66
1 changed files with 10 additions and 10 deletions

View File

@ -2714,17 +2714,17 @@ void pform_makewire(const struct vlltype&li,
while (! assign_list->empty()) { while (! assign_list->empty()) {
decl_assignment_t*first = assign_list->front(); decl_assignment_t*first = assign_list->front();
assign_list->pop_front(); assign_list->pop_front();
if (PExpr*expr = first->expr.release()) { if (PExpr*expr = first->expr.release()) {
if (type == NetNet::REG || type == NetNet::IMPLICIT_REG) { if (type == NetNet::REG || type == NetNet::IMPLICIT_REG) {
pform_make_var_init(li, first->name, expr); pform_make_var_init(li, first->name, expr);
} else { } else {
PEIdent*lval = new PEIdent(first->name.first, PEIdent*lval = new PEIdent(first->name.first,
first->name.second); first->name.second);
FILE_NAME(lval, li); FILE_NAME(lval, li);
PGAssign*ass = pform_make_pgassign(lval, expr, delay, str); PGAssign*ass = pform_make_pgassign(lval, expr, delay, str);
FILE_NAME(ass, li); FILE_NAME(ass, li);
} }
} }
delete first; delete first;
} }
} }