diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-02-18 18:43:53 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-02-18 18:43:53 +0100 |
commit | d77dd8c6d657e447d3931d33c8ce5b637fbda758 (patch) | |
tree | 2bbebb452dc423836313231620a77ee89fac9cec /src/vhdl | |
parent | bd488864036df32ee21668cd20c2cb60d9d2d225 (diff) | |
download | ghdl-d77dd8c6d657e447d3931d33c8ce5b637fbda758.tar.gz ghdl-d77dd8c6d657e447d3931d33c8ce5b637fbda758.tar.bz2 ghdl-d77dd8c6d657e447d3931d33c8ce5b637fbda758.zip |
vhdl-sem_scopes: handle anonymous signal declarations.
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/vhdl-sem_scopes.adb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vhdl/vhdl-sem_scopes.adb b/src/vhdl/vhdl-sem_scopes.adb index c7c2c5f7c..687c92aba 100644 --- a/src/vhdl/vhdl-sem_scopes.adb +++ b/src/vhdl/vhdl-sem_scopes.adb @@ -1104,7 +1104,8 @@ package body Vhdl.Sem_Scopes is | Iir_Kind_Disconnection_Specification => null; when Iir_Kinds_Signal_Attribute - | Iir_Kind_Signal_Attribute_Declaration => + | Iir_Kind_Signal_Attribute_Declaration + | Iir_Kind_Anonymous_Signal_Declaration => null; when Iir_Kind_Protected_Type_Body => |