aboutsummaryrefslogtreecommitdiffstats
path: root/src/ghdldrv/ghdlprint.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-05 06:57:01 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-05 06:57:01 +0200
commitd1f0fedf7882cf1b15ea6450da5bbd878d007a98 (patch)
tree39c7312a2f1bbe3e5f357a22dd1df4fa228b3535 /src/ghdldrv/ghdlprint.adb
parent19a9154fb3fadd0a33a6826e525091a9a75687e4 (diff)
downloadghdl-d1f0fedf7882cf1b15ea6450da5bbd878d007a98.tar.gz
ghdl-d1f0fedf7882cf1b15ea6450da5bbd878d007a98.tar.bz2
ghdl-d1f0fedf7882cf1b15ea6450da5bbd878d007a98.zip
vhdl: move canon to a vhdl child package.
Diffstat (limited to 'src/ghdldrv/ghdlprint.adb')
-rw-r--r--src/ghdldrv/ghdlprint.adb10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ghdldrv/ghdlprint.adb b/src/ghdldrv/ghdlprint.adb
index 231f156ac..4738c6f7e 100644
--- a/src/ghdldrv/ghdlprint.adb
+++ b/src/ghdldrv/ghdlprint.adb
@@ -30,7 +30,7 @@ with Iirs_Utils; use Iirs_Utils;
with Vhdl.Tokens;
with Vhdl.Scanner;
with Vhdl.Parse;
-with Canon;
+with Vhdl.Canon;
with Version;
with Xrefs;
with Sem_Lib; use Sem_Lib;
@@ -986,10 +986,10 @@ package body Ghdlprint is
-- Keep parenthesis during parse.
Vhdl.Parse.Flag_Parse_Parenthesis := True;
- Canon.Canon_Flag_Concurrent_Stmts := False;
- Canon.Canon_Flag_Configurations := False;
- Canon.Canon_Flag_Specification_Lists := False;
- Canon.Canon_Flag_Associations := False;
+ Vhdl.Canon.Canon_Flag_Concurrent_Stmts := False;
+ Vhdl.Canon.Canon_Flag_Configurations := False;
+ Vhdl.Canon.Canon_Flag_Specification_Lists := False;
+ Vhdl.Canon.Canon_Flag_Associations := False;
-- Parse all files.
for I in Args'Range loop