diff options
author | Tristan Gingold <tgingold@free.fr> | 2018-12-15 07:40:34 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2018-12-16 07:05:31 +0100 |
commit | 6f3f9645ef7f05150dd13488025d419deb29c6da (patch) | |
tree | f4b7e32f54cd9e8541c98f92d846e8e2a5e9fcaa /src/vhdl/sem_lib.adb | |
parent | fe1d817d034d969e012faaa661238ff1587aed25 (diff) | |
download | ghdl-6f3f9645ef7f05150dd13488025d419deb29c6da.tar.gz ghdl-6f3f9645ef7f05150dd13488025d419deb29c6da.tar.bz2 ghdl-6f3f9645ef7f05150dd13488025d419deb29c6da.zip |
Finish_Compilation: do not raise Compilation_Error.
Diffstat (limited to 'src/vhdl/sem_lib.adb')
-rw-r--r-- | src/vhdl/sem_lib.adb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vhdl/sem_lib.adb b/src/vhdl/sem_lib.adb index 6139d245e..19ca27230 100644 --- a/src/vhdl/sem_lib.adb +++ b/src/vhdl/sem_lib.adb @@ -99,7 +99,7 @@ package body Sem_Lib is end if; if Errorout.Nbr_Errors > 0 then - raise Compilation_Error; + return; end if; if (Main or Flags.List_All) and then Flags.List_Sem then @@ -116,7 +116,7 @@ package body Sem_Lib is Post_Sems.Post_Sem_Checks (Unit); if Errorout.Nbr_Errors > 0 then - raise Compilation_Error; + return; end if; -- Canonalisation. @@ -134,7 +134,7 @@ package body Sem_Lib is end if; if Errorout.Nbr_Errors > 0 then - raise Compilation_Error; + return; end if; if (Main or Flags.List_All) and then Flags.List_Canon then |