aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-sem_lib.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdl/vhdl-sem_lib.adb')
-rw-r--r--src/vhdl/vhdl-sem_lib.adb8
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;