diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-09-24 04:23:27 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-09-25 18:32:45 +0200 |
commit | 6626c7b3e13f3a91fc551e7a0b1b246c8840c5eb (patch) | |
tree | 44e333d4d9af257a4da881dcbb5423d0fb287942 /src/vhdl/sem_names.adb | |
parent | 85387f99d7f8d0341229d58b249f9137db34c185 (diff) | |
download | ghdl-6626c7b3e13f3a91fc551e7a0b1b246c8840c5eb.tar.gz ghdl-6626c7b3e13f3a91fc551e7a0b1b246c8840c5eb.tar.bz2 ghdl-6626c7b3e13f3a91fc551e7a0b1b246c8840c5eb.zip |
TO FIX: handle parenthesis in sem_name.
Diffstat (limited to 'src/vhdl/sem_names.adb')
-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 e78cc6ea3..8334d1505 100644 --- a/src/vhdl/sem_names.adb +++ b/src/vhdl/sem_names.adb @@ -3760,6 +3760,9 @@ package body Sem_Names is Sem_Simple_Name (Name, False, Soft => True); when Iir_Kind_Selected_Name => Sem_Selected_Name (Name, Keep_Alias => False, Soft => True); + when Iir_Kind_Parenthesis_Name => + -- FIXME: SOFT!! + Sem_Parenthesis_Name (Name); when others => Error_Kind ("sem_name_soft", Name); end case; |