From 3f71bc469de63ae6380e10e5f198a8ba1b7d7b3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Povi=C5=A1er?= Date: Thu, 18 Jul 2024 13:01:22 +0200 Subject: [PATCH] check: Rephrase comment --- passes/cmds/check.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/passes/cmds/check.cc b/passes/cmds/check.cc index 255c32fba..1848d34b6 100644 --- a/passes/cmds/check.cc +++ b/passes/cmds/check.cc @@ -284,10 +284,10 @@ struct CheckPass : public Pass { for (auto &loop : topo.loops) { string message = stringf("found logic loop in module %s:\n", log_id(module)); - // `loop` only contains wire bits, or an occassional special helper node for cells for - // which we have done the edges fallback. The cell and its ports that led to an edge is - // an information we need to recover now. For that we need to have the previous wire bit - // of the loop at hand. + // `loop` only contains wire bits, or an occasional special helper node for cells for + // which we have done the edges fallback. The cell and its ports that led to an edge are + // a piece of information we need to recover now. For that we need to have the previous + // wire bit of the loop at hand. SigBit prev; for (auto it = loop.rbegin(); it != loop.rend(); it++) if (it->second != -1) { // skip the fallback helper nodes