diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-10-16 05:01:55 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-10-16 05:01:55 +0200 |
commit | cb252f101703335438c6019b953c6d40e53be95b (patch) | |
tree | 3829b7c0e96f591d531410f748b830d94e37115f | |
parent | ada7d040fb9bc06f683f52b94d1bb22fb5f9ae2b (diff) | |
download | ghdl-cb252f101703335438c6019b953c6d40e53be95b.tar.gz ghdl-cb252f101703335438c6019b953c6d40e53be95b.tar.bz2 ghdl-cb252f101703335438c6019b953c6d40e53be95b.zip |
Handle overload call to interface subprograms.
Fix #439
-rw-r--r-- | src/vhdl/sem_names.adb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vhdl/sem_names.adb b/src/vhdl/sem_names.adb index edea39022..5b3baf7cc 100644 --- a/src/vhdl/sem_names.adb +++ b/src/vhdl/sem_names.adb @@ -290,6 +290,9 @@ package body Sem_Names is | Iir_Kind_Procedure_Declaration | Iir_Kind_Enumeration_Literal => null; + when Iir_Kind_Interface_Function_Declaration + | Iir_Kind_Interface_Procedure_Declaration => + null; when Iir_Kinds_Denoting_Name => null; when others => |