aboutsummaryrefslogtreecommitdiffstats
path: root/src/ghdldrv/ghdlsynth.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/ghdldrv/ghdlsynth.adb')
-rw-r--r--src/ghdldrv/ghdlsynth.adb7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ghdldrv/ghdlsynth.adb b/src/ghdldrv/ghdlsynth.adb
index 08d980581..8ca51b81e 100644
--- a/src/ghdldrv/ghdlsynth.adb
+++ b/src/ghdldrv/ghdlsynth.adb
@@ -251,13 +251,14 @@ package body Ghdlsynth is
declare
Arg : String renames Args (I).all;
pragma Assert (Arg'First = 1);
+ Id : Name_Id;
begin
if Arg'Last > 7 and then Arg (1 .. 7) = "--work=" then
- if Libraries.Decode_Work_Option (Arg) then
- Libraries.Load_Work_Library (True);
- else
+ Id := Libraries.Decode_Work_Option (Arg);
+ if Id = Null_Identifier then
return Null_Iir;
end if;
+ Libraries.Load_Work_Library (True);
else
Ghdlcomp.Compile_Load_File (Arg);
end if;