diff options
Diffstat (limited to 'src/vhdl/sem.adb')
-rw-r--r-- | src/vhdl/sem.adb | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/vhdl/sem.adb b/src/vhdl/sem.adb index 7cecd3d6b..45899f368 100644 --- a/src/vhdl/sem.adb +++ b/src/vhdl/sem.adb @@ -490,13 +490,7 @@ package body Sem is -- GHDL: for a direct instantiation, follow rules of -- LRM 1.1.1.1 Generic and LRM 1.1.1.2 Ports. - if Flags.Vhdl_Std = Vhdl_87 - or else Get_Kind (Inter_Parent) = Iir_Kind_Entity_Declaration - then - Miss := Missing_Port; - else - Miss := Missing_Allowed; - end if; + Miss := Missing_Port; when Iir_Kind_Binding_Indication => -- LRM 5.2.1.2 Generic map and port map aspects Miss := Missing_Allowed; |