aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/dom
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-06-22 18:51:27 +0200
committerTristan Gingold <tgingold@free.fr>2021-06-22 18:51:27 +0200
commitbcd26f428e704eef5ef665bea7448f3990b5e010 (patch)
tree0f4e46bc2c01e741bec8203d16ffcb8110ac2135 /pyGHDL/dom
parent25a3580831170f8a0acd0a79aca2c94ea4652338 (diff)
downloadghdl-bcd26f428e704eef5ef665bea7448f3990b5e010.tar.gz
ghdl-bcd26f428e704eef5ef665bea7448f3990b5e010.tar.bz2
ghdl-bcd26f428e704eef5ef665bea7448f3990b5e010.zip
pyGHDL/dom/_Utils.py: add assert, adjust previous commit
Diffstat (limited to 'pyGHDL/dom')
-rw-r--r--pyGHDL/dom/_Utils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyGHDL/dom/_Utils.py b/pyGHDL/dom/_Utils.py
index 38a85c0c3..0e0cbc95b 100644
--- a/pyGHDL/dom/_Utils.py
+++ b/pyGHDL/dom/_Utils.py
@@ -53,6 +53,8 @@ __MODE_TRANSLATION = {
@export
def GetIirKindOfNode(node: Iir) -> nodes.Iir_Kind:
+ # This function is the most likely to be called on a Null_Iir node
+ assert node != 0
kind: int = nodes.Get_Kind(node)
return nodes.Iir_Kind(kind)