aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-annotations.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-07-09 09:10:28 +0200
committerTristan Gingold <tgingold@free.fr>2020-07-18 19:19:57 +0200
commit65fd76fc13044d6ea39ff757dfbbf2798758f64c (patch)
tree4828aee126de7b3bad9d57d2d015785defce1e73 /src/vhdl/vhdl-annotations.adb
parent1fda27561ab480e690a199ecda4f79d2f36b1f7d (diff)
downloadghdl-65fd76fc13044d6ea39ff757dfbbf2798758f64c.tar.gz
ghdl-65fd76fc13044d6ea39ff757dfbbf2798758f64c.tar.bz2
ghdl-65fd76fc13044d6ea39ff757dfbbf2798758f64c.zip
vhdl-sem_decls: handle multiple declarations with subtype attribute.
Diffstat (limited to 'src/vhdl/vhdl-annotations.adb')
-rw-r--r--src/vhdl/vhdl-annotations.adb8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/vhdl/vhdl-annotations.adb b/src/vhdl/vhdl-annotations.adb
index fc1d252ce..8c083d2fd 100644
--- a/src/vhdl/vhdl-annotations.adb
+++ b/src/vhdl/vhdl-annotations.adb
@@ -641,9 +641,13 @@ package body Vhdl.Annotations is
procedure Annotate_Declaration_Type (Block_Info: Sim_Info_Acc; Decl: Iir)
is
- Ind : constant Iir := Get_Subtype_Indication (Decl);
+ Ind : Iir;
begin
- if Ind = Null_Iir or else Get_Kind (Ind) in Iir_Kinds_Denoting_Name then
+ if Get_Is_Ref (Decl) then
+ return;
+ end if;
+ Ind := Get_Subtype_Indication (Decl);
+ if Get_Kind (Ind) in Iir_Kinds_Denoting_Name then
return;
end if;
Annotate_Type_Definition (Block_Info, Ind);