diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-01-15 18:23:29 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-01-15 18:23:29 +0100 |
commit | 9b4124223aebc967d9fc380d45aeca4e35f1231b (patch) | |
tree | face5a8c7d9138b8ea043a7d66ea95eb4a5636dc /src/vhdl | |
parent | 8eb0cb2c842801e76a543aeeb0e0a2b7bb331a1a (diff) | |
download | ghdl-9b4124223aebc967d9fc380d45aeca4e35f1231b.tar.gz ghdl-9b4124223aebc967d9fc380d45aeca4e35f1231b.tar.bz2 ghdl-9b4124223aebc967d9fc380d45aeca4e35f1231b.zip |
sem_scopes: support signal attributes in entities.
For #256
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/sem_scopes.adb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vhdl/sem_scopes.adb b/src/vhdl/sem_scopes.adb index d6d895231..0d87c9584 100644 --- a/src/vhdl/sem_scopes.adb +++ b/src/vhdl/sem_scopes.adb @@ -1055,7 +1055,8 @@ package body Sem_Scopes is | Iir_Kind_Configuration_Specification | Iir_Kind_Disconnection_Specification => null; - when Iir_Kinds_Signal_Attribute => + when Iir_Kinds_Signal_Attribute + | Iir_Kind_Signal_Attribute_Declaration => null; when Iir_Kind_Protected_Type_Body => |