diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-03-31 18:27:57 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-03-31 18:29:07 +0200 |
commit | 90ee44ed04d375935e66d74938a630ccb490649f (patch) | |
tree | c42d342b55050c03afb494a7f5055eeb056f50a1 /src | |
parent | 47e4a50034a33296a91b66676f55637cd41597c5 (diff) | |
download | ghdl-90ee44ed04d375935e66d74938a630ccb490649f.tar.gz ghdl-90ee44ed04d375935e66d74938a630ccb490649f.tar.bz2 ghdl-90ee44ed04d375935e66d74938a630ccb490649f.zip |
vhdl-sem_assocs: report all errors on incorrect formals.
Diffstat (limited to 'src')
-rw-r--r-- | src/vhdl/vhdl-sem_assocs.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vhdl/vhdl-sem_assocs.adb b/src/vhdl/vhdl-sem_assocs.adb index 53d50e65f..79ce1c151 100644 --- a/src/vhdl/vhdl-sem_assocs.adb +++ b/src/vhdl/vhdl-sem_assocs.adb @@ -2338,7 +2338,7 @@ package body Vhdl.Sem_Assocs is Formal_Name := Get_Named_Entity (Formal); if Is_Error (Formal_Name) then Match := Not_Compatible; - exit; + -- Continue analysis in order to catch more errors. end if; Assoc := Get_Chain (Assoc); |