From b77257a093d74e28a4fd6687c6fcce156071c2bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20L=C3=A4ufer?= Date: Tue, 9 Jan 2024 11:22:27 -0800 Subject: [PATCH] visit generate --- rtlrepair/repair.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rtlrepair/repair.py b/rtlrepair/repair.py index 1046a59..990d6ce 100644 --- a/rtlrepair/repair.py +++ b/rtlrepair/repair.py @@ -171,10 +171,10 @@ def visit_DelayStatement(self, node: vast.DelayStatement): # by default, we ignore delay statement since they do not make much sense for synchronous circuit descriptions return node - def visit_GenerateStatement(self, node: vast.GenerateStatement): - # generate blocks have their own rules which disallow many of the usual instrumentation that we do - # in the future, one might try to find a small set of changes that might be allowed - return node + # def visit_GenerateStatement(self, node: vast.GenerateStatement): + # # generate blocks have their own rules which disallow many of the usual instrumentation that we do + # # in the future, one might try to find a small set of changes that might be allowed + # return node def do_repair(ast: vast.Source, assignment: dict, blockified: list) -> list: