diff options
-rw-r--r-- | pyGHDL/dom/Sequential.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyGHDL/dom/Sequential.py b/pyGHDL/dom/Sequential.py index 52c2c04ad..42e5e2245 100644 --- a/pyGHDL/dom/Sequential.py +++ b/pyGHDL/dom/Sequential.py @@ -485,8 +485,9 @@ class ExitStatement(VHDLModel_ExitStatement, DOMMixin): exitNode: Iir, label: str = None, ): - super().__init__(label) + super().__init__(condition=None, loopLabel=label) DOMMixin.__init__(self, exitNode) + #TODO: parse condition @export |