diff options
| author | Tristan Gingold <tgingold@free.fr> | 2019-05-05 08:28:43 +0200 | 
|---|---|---|
| committer | Tristan Gingold <tgingold@free.fr> | 2019-05-05 13:55:18 +0200 | 
| commit | e4960acab358ebdd76d796554f962e755ec8954c (patch) | |
| tree | d76cdb9d8497963a53d30d41dba05be0abe4bd1c /src/vhdl/vhdl-sem_lib.adb | |
| parent | 83c593362bce5d1930a1bbf486a62a06c674bded (diff) | |
| download | ghdl-e4960acab358ebdd76d796554f962e755ec8954c.tar.gz ghdl-e4960acab358ebdd76d796554f962e755ec8954c.tar.bz2 ghdl-e4960acab358ebdd76d796554f962e755ec8954c.zip  | |
vhdl: move nodes_gc to vhdl child.
Diffstat (limited to 'src/vhdl/vhdl-sem_lib.adb')
| -rw-r--r-- | src/vhdl/vhdl-sem_lib.adb | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vhdl/vhdl-sem_lib.adb b/src/vhdl/vhdl-sem_lib.adb index 10f6a60cc..fe788202d 100644 --- a/src/vhdl/vhdl-sem_lib.adb +++ b/src/vhdl/vhdl-sem_lib.adb @@ -28,7 +28,7 @@ with Vhdl.Disp_Vhdl;  with Vhdl.Sem;  with Vhdl.Post_Sems;  with Vhdl.Canon; -with Nodes_GC; +with Vhdl.Nodes_GC;  package body Vhdl.Sem_Lib is     procedure Error_Lib_Msg (Msg : String; Arg1 : Earg_Type) is @@ -84,7 +84,7 @@ package body Vhdl.Sem_Lib is        end if;        if Flags.Check_Ast_Level > 0 then -         Nodes_GC.Check_Tree (Unit); +         Vhdl.Nodes_GC.Check_Tree (Unit);        end if;        if Flags.Verbose then @@ -107,7 +107,7 @@ package body Vhdl.Sem_Lib is        end if;        if Flags.Check_Ast_Level > 0 then -         Nodes_GC.Check_Tree (Unit); +         Vhdl.Nodes_GC.Check_Tree (Unit);        end if;        --  Post checks @@ -142,7 +142,7 @@ package body Vhdl.Sem_Lib is        end if;        if Flags.Check_Ast_Level > 0 then -         Nodes_GC.Check_Tree (Unit); +         Vhdl.Nodes_GC.Check_Tree (Unit);        end if;     end Finish_Compilation;  | 
