aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-annotations.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-07-21 06:45:24 +0200
committerTristan Gingold <tgingold@free.fr>2022-07-21 06:45:24 +0200
commit341a8698ccb6b795d46b9570bac06e240c7664de (patch)
treef818881d50e3da9fe055cbf3a6ce4c2472e16aaf /src/vhdl/vhdl-annotations.adb
parentf440e1b0289a1f969b9190a11831e384b911db0e (diff)
downloadghdl-341a8698ccb6b795d46b9570bac06e240c7664de.tar.gz
ghdl-341a8698ccb6b795d46b9570bac06e240c7664de.tar.bz2
ghdl-341a8698ccb6b795d46b9570bac06e240c7664de.zip
vhdl-nodes: renaming.
Node Iir_Kind_Signal_Attribute_Declaration is now Iir_Kind_Attribute_Implicit_Declaration Will also handle quantities.
Diffstat (limited to 'src/vhdl/vhdl-annotations.adb')
-rw-r--r--src/vhdl/vhdl-annotations.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/vhdl-annotations.adb b/src/vhdl/vhdl-annotations.adb
index c36fec8ee..7a2487278 100644
--- a/src/vhdl/vhdl-annotations.adb
+++ b/src/vhdl/vhdl-annotations.adb
@@ -726,11 +726,11 @@ package body Vhdl.Annotations is
when Iir_Kind_Package_Body =>
Annotate_Package_Body (Decl);
- when Iir_Kind_Signal_Attribute_Declaration =>
+ when Iir_Kind_Attribute_Implicit_Declaration =>
declare
Attr : Iir;
begin
- Attr := Get_Signal_Attribute_Chain (Decl);
+ Attr := Get_Attribute_Implicit_Chain (Decl);
while Is_Valid (Attr) loop
Create_Signal_Info (Block_Info, Attr);
Attr := Get_Attr_Chain (Attr);