aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth')
-rw-r--r--src/synth/elab-vhdl_insts.adb8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/synth/elab-vhdl_insts.adb b/src/synth/elab-vhdl_insts.adb
index ac955db0e..5192046b1 100644
--- a/src/synth/elab-vhdl_insts.adb
+++ b/src/synth/elab-vhdl_insts.adb
@@ -108,10 +108,14 @@ package body Elab.Vhdl_Insts is
when Iir_Kind_Interface_Type_Declaration =>
declare
+ Act : Node;
Act_Typ : Type_Acc;
begin
- Act_Typ := Synth_Subtype_Indication
- (Syn_Inst, Get_Actual (Assoc));
+ Act := Get_Actual (Assoc);
+ if Get_Kind (Act) in Iir_Kinds_Denoting_Name then
+ Act := Get_Type (Act);
+ end if;
+ Act_Typ := Synth_Subtype_Indication (Syn_Inst, Act);
Create_Subtype_Object (Sub_Inst, Get_Type (Inter), Act_Typ);
end;