aboutsummaryrefslogtreecommitdiffstats
path: root/translate/ghdldrv/ghdllocal.adb
diff options
context:
space:
mode:
Diffstat (limited to 'translate/ghdldrv/ghdllocal.adb')
-rw-r--r--translate/ghdldrv/ghdllocal.adb11
1 files changed, 3 insertions, 8 deletions
diff --git a/translate/ghdldrv/ghdllocal.adb b/translate/ghdldrv/ghdllocal.adb
index 6459f70dd..a94b27928 100644
--- a/translate/ghdldrv/ghdllocal.adb
+++ b/translate/ghdldrv/ghdllocal.adb
@@ -581,7 +581,7 @@ package body Ghdllocal is
return "-s [OPTS] FILEs Check syntax of FILEs";
end Get_Short_Help;
- function Analyze_One_File (File_Name : String) return Iir_Design_File
+ procedure Analyze_One_File (File_Name : String)
is
use Ada.Text_IO;
Id : Name_Id;
@@ -621,20 +621,15 @@ package body Ghdllocal is
if Errorout.Nbr_Errors > 0 then
raise Errorout.Compilation_Error;
end if;
-
- return Design_File;
end Analyze_One_File;
- procedure Analyze_Files (Files : Argument_List; Save_Library : Boolean)
- is
- Design_File : Iir_Design_File;
- pragma Unreferenced (Design_File);
+ procedure Analyze_Files (Files : Argument_List; Save_Library : Boolean) is
begin
Setup_Libraries (True);
-- Parse all files.
for I in Files'Range loop
- Design_File := Analyze_One_File (Files (I).all);
+ Analyze_One_File (Files (I).all);
end loop;
if Save_Library then