aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/synth/libghdlsynth.adb3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/synth/libghdlsynth.adb b/src/synth/libghdlsynth.adb
index d9d844de1..0931b48b6 100644
--- a/src/synth/libghdlsynth.adb
+++ b/src/synth/libghdlsynth.adb
@@ -52,6 +52,9 @@ package body Libghdlsynth is
exception
when Option_Error =>
return No_Module;
+ when others =>
+ -- Avoid possible issues with exceptions...
+ return No_Module;
end Synth;
Gnat_Version : constant String := "unknown compiler version" & ASCII.NUL;