eval_tree: Indent fixes

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2023-11-16 09:21:54 +01:00
parent 28987277ad
commit 37eba70ca4
1 changed files with 4 additions and 4 deletions

View File

@ -2172,10 +2172,10 @@ static bool get_array_info(const NetExpr*arg, long dim,
long &left, long &right, bool&defer)
{
if (const NetEConstParam*param = dynamic_cast<const NetEConstParam*>(arg)) {
ivl_assert(*arg, dim == 1);
left = param->expr_width() - 1;
right = 0;
return false;
ivl_assert(*arg, dim == 1);
left = param->expr_width() - 1;
right = 0;
return false;
}
/* The argument must be a signal that has enough dimensions. */
const NetESignal*esig = dynamic_cast<const NetESignal*>(arg);