diff options
Diffstat (limited to 'src/ghdldrv')
-rw-r--r-- | src/ghdldrv/ghdlcomp.ads | 2 | ||||
-rw-r--r-- | src/ghdldrv/ghdldrv.adb | 2 | ||||
-rw-r--r-- | src/ghdldrv/ghdllocal.ads | 2 | ||||
-rw-r--r-- | src/ghdldrv/ghdlprint.ads | 2 | ||||
-rw-r--r-- | src/ghdldrv/ghdlrun.adb | 4 | ||||
-rw-r--r-- | src/ghdldrv/ghdlsimul.ads | 2 | ||||
-rw-r--r-- | src/ghdldrv/ghdlxml.adb | 2 |
7 files changed, 8 insertions, 8 deletions
diff --git a/src/ghdldrv/ghdlcomp.ads b/src/ghdldrv/ghdlcomp.ads index 0e265a7c2..d20a480a2 100644 --- a/src/ghdldrv/ghdlcomp.ads +++ b/src/ghdldrv/ghdlcomp.ads @@ -16,7 +16,7 @@ -- Software Foundation, 59 Temple Place - Suite 330, Boston, MA -- 02111-1307, USA. with GNAT.OS_Lib; use GNAT.OS_Lib; -with Iirs; use Iirs; +with Vhdl.Nodes; use Vhdl.Nodes; package Ghdlcomp is -- This procedure is called at start of commands which call diff --git a/src/ghdldrv/ghdldrv.adb b/src/ghdldrv/ghdldrv.adb index 0d14c8035..d8e9534fc 100644 --- a/src/ghdldrv/ghdldrv.adb +++ b/src/ghdldrv/ghdldrv.adb @@ -25,7 +25,7 @@ with Libraries; with Name_Table; use Name_Table; with Vhdl.Std_Package; with Types; use Types; -with Iirs; use Iirs; +with Vhdl.Nodes; use Vhdl.Nodes; with Files_Map; with Vhdl.Configuration; with Default_Paths; diff --git a/src/ghdldrv/ghdllocal.ads b/src/ghdldrv/ghdllocal.ads index 2a7b4ef92..0a903a129 100644 --- a/src/ghdldrv/ghdllocal.ads +++ b/src/ghdldrv/ghdllocal.ads @@ -17,7 +17,7 @@ -- 02111-1307, USA. with GNAT.OS_Lib; use GNAT.OS_Lib; with Ghdlmain; use Ghdlmain; -with Iirs; use Iirs; +with Vhdl.Nodes; use Vhdl.Nodes; package Ghdllocal is -- Init procedure for the functionnal interface. diff --git a/src/ghdldrv/ghdlprint.ads b/src/ghdldrv/ghdlprint.ads index 18cf6d081..4d6f95248 100644 --- a/src/ghdldrv/ghdlprint.ads +++ b/src/ghdldrv/ghdlprint.ads @@ -16,7 +16,7 @@ -- Software Foundation, 59 Temple Place - Suite 330, Boston, MA -- 02111-1307, USA. -with Iirs; use Iirs; +with Vhdl.Nodes; use Vhdl.Nodes; package Ghdlprint is procedure Analyze_Design_File_Units (File : Iir_Design_File); diff --git a/src/ghdldrv/ghdlrun.adb b/src/ghdldrv/ghdlrun.adb index efb0c2d4d..9ae929efe 100644 --- a/src/ghdldrv/ghdlrun.adb +++ b/src/ghdldrv/ghdlrun.adb @@ -31,7 +31,7 @@ with GNAT.OS_Lib; use GNAT.OS_Lib; with Ortho_Jit; with Ortho_Nodes; use Ortho_Nodes; with Trans_Decls; -with Iirs; use Iirs; +with Vhdl.Nodes; use Vhdl.Nodes; with Vhdl.Std_Package; with Flags; with Errorout; use Errorout; @@ -758,7 +758,7 @@ package body Ghdlrun is Translation.Finalize; Lists.Initialize; Str_Table.Initialize; - Iirs.Initialize; + Vhdl.Nodes.Initialize; Files_Map.Initialize; Name_Table.Finalize; diff --git a/src/ghdldrv/ghdlsimul.ads b/src/ghdldrv/ghdlsimul.ads index 3423b1152..6726697f3 100644 --- a/src/ghdldrv/ghdlsimul.ads +++ b/src/ghdldrv/ghdlsimul.ads @@ -16,7 +16,7 @@ -- Software Foundation, 59 Temple Place - Suite 330, Boston, MA -- 02111-1307, USA. -with Iirs; use Iirs; +with Vhdl.Nodes; use Vhdl.Nodes; package Ghdlsimul is procedure Register_Commands; diff --git a/src/ghdldrv/ghdlxml.adb b/src/ghdldrv/ghdlxml.adb index 34dab448c..c855ad748 100644 --- a/src/ghdldrv/ghdlxml.adb +++ b/src/ghdldrv/ghdlxml.adb @@ -25,7 +25,7 @@ with Vhdl.Disp_Tree; use Vhdl.Disp_Tree; with Ghdlprint; use Ghdlprint; with Libraries; with Errorout; use Errorout; -with Iirs; use Iirs; +with Vhdl.Nodes; use Vhdl.Nodes; with Vhdl.Sem_Lib; use Vhdl.Sem_Lib; with Ghdlmain; use Ghdlmain; with Ghdllocal; use Ghdllocal; |