aboutsummaryrefslogtreecommitdiffstats
path: root/src/options.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-04-26 10:28:23 +0200
committerTristan Gingold <tgingold@free.fr>2022-04-26 10:28:23 +0200
commitc0edef4e9bd10b54932f972d9496679dd8a60614 (patch)
tree60f08ee26a26a824d0b927d9ccacd016404204b8 /src/options.adb
parent2a88c029c704fa67f10c10f78b0ce3eac9044b81 (diff)
downloadghdl-c0edef4e9bd10b54932f972d9496679dd8a60614.tar.gz
ghdl-c0edef4e9bd10b54932f972d9496679dd8a60614.tar.bz2
ghdl-c0edef4e9bd10b54932f972d9496679dd8a60614.zip
ghdldrv: call elab.vhdl_objtypes.init in options
Diffstat (limited to 'src/options.adb')
-rw-r--r--src/options.adb3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/options.adb b/src/options.adb
index 5e34609d6..4bafa33fc 100644
--- a/src/options.adb
+++ b/src/options.adb
@@ -34,6 +34,8 @@ with Vhdl.Parse;
with Vhdl.Errors;
with Vhdl.Back_End; use Vhdl.Back_End;
+with Elab.Vhdl_Objtypes;
+
package body Options is
procedure Initialize is
begin
@@ -42,6 +44,7 @@ package body Options is
Str_Table.Initialize;
Vhdl.Lists.Initialize;
Vhdl.Nodes.Initialize;
+ Elab.Vhdl_Objtypes.Init;
Files_Map.Initialize;
Libraries.Initialize;
PSL.Nodes.Init (Libraries.Library_Location);