diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-05 08:22:05 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-05 13:55:18 +0200 |
commit | 46100a0f24670f4d01ecc114da2ac5fedbab13af (patch) | |
tree | b1fe717065b2047325d4bfefb1f235e8ded10aff /src/ghdldrv | |
parent | da19fd319d2e54afa2cf230aab044a65b51d77c7 (diff) | |
download | ghdl-46100a0f24670f4d01ecc114da2ac5fedbab13af.tar.gz ghdl-46100a0f24670f4d01ecc114da2ac5fedbab13af.tar.bz2 ghdl-46100a0f24670f4d01ecc114da2ac5fedbab13af.zip |
vhdl: move elocations* packages to vhdl children.
Diffstat (limited to 'src/ghdldrv')
-rw-r--r-- | src/ghdldrv/ghdlprint.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ghdldrv/ghdlprint.adb b/src/ghdldrv/ghdlprint.adb index 90a387d8a..400cfaaec 100644 --- a/src/ghdldrv/ghdlprint.adb +++ b/src/ghdldrv/ghdlprint.adb @@ -37,7 +37,7 @@ with Vhdl.Sem_Lib; use Vhdl.Sem_Lib; with Ghdlmain; use Ghdlmain; with Ghdllocal; use Ghdllocal; with Vhdl.Disp_Vhdl; -with Elocations; +with Vhdl.Elocations; package body Ghdlprint is type Html_Format_Type is (Html_2, Html_Css); @@ -754,7 +754,7 @@ package body Ghdlprint is Lib := Get_Library_Unit (Unit); Location_To_File_Pos - (Elocations.Get_End_Location (Lib), File_Entry, Lend); + (Vhdl.Elocations.Get_End_Location (Lib), File_Entry, Lend); if Lend < First then raise Internal_Error; end if; |