aboutsummaryrefslogtreecommitdiffstats
path: root/src/ghdldrv/ghdlcomp.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-04-05 09:05:21 +0200
committerTristan Gingold <tgingold@free.fr>2021-04-05 09:19:53 +0200
commitf3e936f0ca532fb57f2700a46ba1ff84557f7305 (patch)
treeaa7bc839d7cda359127e90a52b055f714115faf0 /src/ghdldrv/ghdlcomp.adb
parenta9f68a1d91f8ea2a74d8ad4c34f9c777746848a4 (diff)
downloadghdl-f3e936f0ca532fb57f2700a46ba1ff84557f7305.tar.gz
ghdl-f3e936f0ca532fb57f2700a46ba1ff84557f7305.tar.bz2
ghdl-f3e936f0ca532fb57f2700a46ba1ff84557f7305.zip
ghdldrv/: initial support for foreign modules
Diffstat (limited to 'src/ghdldrv/ghdlcomp.adb')
-rw-r--r--src/ghdldrv/ghdlcomp.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ghdldrv/ghdlcomp.adb b/src/ghdldrv/ghdlcomp.adb
index 26c4915b3..c62348752 100644
--- a/src/ghdldrv/ghdlcomp.adb
+++ b/src/ghdldrv/ghdlcomp.adb
@@ -217,7 +217,7 @@ package body Ghdlcomp is
end if;
end Compile_Analyze_Init;
- procedure Compile_Load_File (File : String)
+ procedure Compile_Load_Vhdl_File (File : String)
is
Res : Iir_Design_File;
Design : Iir;
@@ -236,7 +236,7 @@ package body Ghdlcomp is
Libraries.Add_Design_Unit_Into_Library (Design);
Design := Next_Design;
end loop;
- end Compile_Load_File;
+ end Compile_Load_Vhdl_File;
function Compile_Analyze_File (File : String) return Iir
is
@@ -390,7 +390,7 @@ package body Ghdlcomp is
end if;
Libraries.Load_Work_Library (True);
else
- Compile_Load_File (Arg);
+ Compile_Load_Vhdl_File (Arg);
end if;
end;
end loop;