From 37eba70ca4a4c368e074ece0f65755f99fb43396 Mon Sep 17 00:00:00 2001 From: Sylvain Munaut Date: Thu, 16 Nov 2023 09:21:54 +0100 Subject: [PATCH] eval_tree: Indent fixes Signed-off-by: Sylvain Munaut --- eval_tree.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eval_tree.cc b/eval_tree.cc index 04e9975e3..b9e0ccdda 100644 --- a/eval_tree.cc +++ b/eval_tree.cc @@ -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(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(arg);