diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-05 06:57:01 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-05 06:57:01 +0200 |
commit | d1f0fedf7882cf1b15ea6450da5bbd878d007a98 (patch) | |
tree | 39c7312a2f1bbe3e5f357a22dd1df4fa228b3535 /src/vhdl/sem_lib.adb | |
parent | 19a9154fb3fadd0a33a6826e525091a9a75687e4 (diff) | |
download | ghdl-d1f0fedf7882cf1b15ea6450da5bbd878d007a98.tar.gz ghdl-d1f0fedf7882cf1b15ea6450da5bbd878d007a98.tar.bz2 ghdl-d1f0fedf7882cf1b15ea6450da5bbd878d007a98.zip |
vhdl: move canon to a vhdl child package.
Diffstat (limited to 'src/vhdl/sem_lib.adb')
-rw-r--r-- | src/vhdl/sem_lib.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/sem_lib.adb b/src/vhdl/sem_lib.adb index 8e4ec6e21..7affaaadc 100644 --- a/src/vhdl/sem_lib.adb +++ b/src/vhdl/sem_lib.adb @@ -27,7 +27,7 @@ with Vhdl.Disp_Tree; with Vhdl.Disp_Vhdl; with Sem; with Post_Sems; -with Canon; +with Vhdl.Canon; with Nodes_GC; package body Sem_Lib is @@ -127,7 +127,7 @@ package body Sem_Lib is "canonicalize %n", (1 => +Lib_Unit)); end if; - Canon.Canonicalize (Unit); + Vhdl.Canon.Canonicalize (Unit); if (Main or Flags.Dump_All) and then Flags.Dump_Canon then Vhdl.Disp_Tree.Disp_Tree (Unit); |