diff options
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/vhdl-post_sems.adb (renamed from src/vhdl/post_sems.adb) | 4 | ||||
-rw-r--r-- | src/vhdl/vhdl-post_sems.ads (renamed from src/vhdl/post_sems.ads) | 4 | ||||
-rw-r--r-- | src/vhdl/vhdl-sem_lib.adb | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/vhdl/post_sems.adb b/src/vhdl/vhdl-post_sems.adb index d00a808c0..6c653e4fc 100644 --- a/src/vhdl/post_sems.adb +++ b/src/vhdl/vhdl-post_sems.adb @@ -23,7 +23,7 @@ with Ieee.Vital_Timing; with Ieee.Numeric; with Flags; use Flags; -package body Post_Sems is +package body Vhdl.Post_Sems is procedure Post_Sem_Checks (Unit : Iir_Design_Unit) is Lib_Unit : constant Iir := Get_Library_Unit (Unit); @@ -79,4 +79,4 @@ package body Post_Sems is end loop; end if; end Post_Sem_Checks; -end Post_Sems; +end Vhdl.Post_Sems; diff --git a/src/vhdl/post_sems.ads b/src/vhdl/vhdl-post_sems.ads index f70bad85a..09effa2c0 100644 --- a/src/vhdl/post_sems.ads +++ b/src/vhdl/vhdl-post_sems.ads @@ -17,9 +17,9 @@ -- 02111-1307, USA. with Iirs; use Iirs; -package Post_Sems is +package Vhdl.Post_Sems is -- Do post analyze checks, such as VITAL checks. -- This procedure is also used to extract declarations from ieee -- packages. procedure Post_Sem_Checks (Unit : Iir_Design_Unit); -end Post_Sems; +end Vhdl.Post_Sems; diff --git a/src/vhdl/vhdl-sem_lib.adb b/src/vhdl/vhdl-sem_lib.adb index 4b2319c09..10f6a60cc 100644 --- a/src/vhdl/vhdl-sem_lib.adb +++ b/src/vhdl/vhdl-sem_lib.adb @@ -26,7 +26,7 @@ with Vhdl.Parse; with Vhdl.Disp_Tree; with Vhdl.Disp_Vhdl; with Vhdl.Sem; -with Post_Sems; +with Vhdl.Post_Sems; with Vhdl.Canon; with Nodes_GC; @@ -113,7 +113,7 @@ package body Vhdl.Sem_Lib is -- Post checks ---------------- - Post_Sems.Post_Sem_Checks (Unit); + Vhdl.Post_Sems.Post_Sem_Checks (Unit); if Errorout.Nbr_Errors > 0 then return; |