diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-06-10 06:36:49 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-06-11 15:02:48 +0200 |
commit | bb357cf03c7e956db1539712fd64353b6d87872d (patch) | |
tree | 4a78aaec7fad9a0e9400270cf337a75b31832920 /pyGHDL/libghdl/vhdl | |
parent | afeb3e1a54881dd3ae0a1bd4e01f1ef46f9ef0f6 (diff) | |
download | ghdl-bb357cf03c7e956db1539712fd64353b6d87872d.tar.gz ghdl-bb357cf03c7e956db1539712fd64353b6d87872d.tar.bz2 ghdl-bb357cf03c7e956db1539712fd64353b6d87872d.zip |
vhdl: recognize ieee.math_real.sign, fix is_x recogn.
Diffstat (limited to 'pyGHDL/libghdl/vhdl')
-rw-r--r-- | pyGHDL/libghdl/vhdl/nodes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyGHDL/libghdl/vhdl/nodes.py b/pyGHDL/libghdl/vhdl/nodes.py index 4330d7fad..f0b42f3e3 100644 --- a/pyGHDL/libghdl/vhdl/nodes.py +++ b/pyGHDL/libghdl/vhdl/nodes.py @@ -1417,8 +1417,8 @@ class Iir_Predefined(IntEnum): Ieee_1164_To_UX01_Bv_Slv = 220 Ieee_1164_To_UX01_Bv_Suv = 221 Ieee_1164_To_UX01_Bit_Log = 222 - Ieee_1164_Vector_Is_X = 223 - Ieee_1164_Scalar_Is_X = 224 + Ieee_1164_Is_X_Slv = 223 + Ieee_1164_Is_X_Log = 224 Ieee_1164_Rising_Edge = 225 Ieee_1164_Falling_Edge = 226 Ieee_1164_And_Suv_Log = 227 |