aboutsummaryrefslogtreecommitdiffstats
path: root/src/options.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-05 08:26:38 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-05 13:55:18 +0200
commit83c593362bce5d1930a1bbf486a62a06c674bded (patch)
tree45ca88eba5a346204f35d812e25eb1561573b02f /src/options.adb
parent46100a0f24670f4d01ecc114da2ac5fedbab13af (diff)
downloadghdl-83c593362bce5d1930a1bbf486a62a06c674bded.tar.gz
ghdl-83c593362bce5d1930a1bbf486a62a06c674bded.tar.bz2
ghdl-83c593362bce5d1930a1bbf486a62a06c674bded.zip
vhdl: move back_end to vhdl child.
Diffstat (limited to 'src/options.adb')
-rw-r--r--src/options.adb10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/options.adb b/src/options.adb
index f7336c585..553a95545 100644
--- a/src/options.adb
+++ b/src/options.adb
@@ -24,7 +24,7 @@ with PSL.Nodes;
with PSL.Dump_Tree;
with Vhdl.Disp_Tree;
with Vhdl.Scanner;
-with Back_End; use Back_End;
+with Vhdl.Back_End; use Vhdl.Back_End;
with Flags; use Flags;
with Files_Map;
@@ -199,8 +199,8 @@ package body Options is
Flag_Integer_64 := True;
elsif Opt = "--ftime32" then
Flag_Time_64 := False;
- elsif Back_End.Parse_Option /= null
- and then Back_End.Parse_Option.all (Opt)
+ elsif Vhdl.Back_End.Parse_Option /= null
+ and then Vhdl.Back_End.Parse_Option.all (Opt)
then
null;
else
@@ -251,8 +251,8 @@ package body Options is
P ("Compilation dump:");
P (" -d[psa] dump tree after parse, semantics or annotate");
P (" --dall -dX options apply to all files");
- if Back_End.Disp_Option /= null then
- Back_End.Disp_Option.all;
+ if Vhdl.Back_End.Disp_Option /= null then
+ Vhdl.Back_End.Disp_Option.all;
end if;
end Disp_Options_Help;