diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-10-11 06:57:27 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-10-11 06:57:27 +0200 |
commit | 966ffd5b0317e61f5b4e48c2e43889d055ddddcc (patch) | |
tree | 5f925a30e8193be7cf733c5dee1dbb66fe71a568 /python/libghdl/thin/vhdl | |
parent | bca8844670a1a13964f42dc4223f720c4f405939 (diff) | |
download | ghdl-966ffd5b0317e61f5b4e48c2e43889d055ddddcc.tar.gz ghdl-966ffd5b0317e61f5b4e48c2e43889d055ddddcc.tar.bz2 ghdl-966ffd5b0317e61f5b4e48c2e43889d055ddddcc.zip |
vhdl: recognize conv_integer functions from std_logic_arith.
Diffstat (limited to 'python/libghdl/thin/vhdl')
-rw-r--r-- | python/libghdl/thin/vhdl/nodes.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/libghdl/thin/vhdl/nodes.py b/python/libghdl/thin/vhdl/nodes.py index b77434aa7..700846bbb 100644 --- a/python/libghdl/thin/vhdl/nodes.py +++ b/python/libghdl/thin/vhdl/nodes.py @@ -1213,6 +1213,10 @@ class Iir_Predefined: Ieee_Std_Logic_Arith_Conv_Unsigned_Uns = 334 Ieee_Std_Logic_Arith_Conv_Unsigned_Sgn = 335 Ieee_Std_Logic_Arith_Conv_Unsigned_Log = 336 + Ieee_Std_Logic_Arith_Conv_Integer_Int = 337 + Ieee_Std_Logic_Arith_Conv_Integer_Uns = 338 + Ieee_Std_Logic_Arith_Conv_Integer_Sgn = 339 + Ieee_Std_Logic_Arith_Conv_Integer_Log = 340 Get_Kind = libghdl.vhdl__nodes__get_kind Get_Location = libghdl.vhdl__nodes__get_location |