aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/sem.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdl/sem.adb')
-rw-r--r--src/vhdl/sem.adb4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vhdl/sem.adb b/src/vhdl/sem.adb
index 8de3f149c..90cdc3179 100644
--- a/src/vhdl/sem.adb
+++ b/src/vhdl/sem.adb
@@ -555,13 +555,15 @@ package body Sem is
if Get_Name_Staticness (Object) < Globally then
Error_Msg_Sem (+Actual, "actual must be a static name");
end if;
+ Check_Port_Association_Bounds_Restrictions
+ (Formal, Actual, El);
if Get_Kind (Prefix) = Iir_Kind_Interface_Signal_Declaration
then
declare
P : Boolean;
pragma Unreferenced (P);
begin
- P := Check_Port_Association_Restriction
+ P := Check_Port_Association_Mode_Restrictions
(Formal_Base, Prefix, El);
end;
end if;