diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-05 07:18:49 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-05 08:05:10 +0200 |
commit | 53fcf00d88d1a3b34c7833aa4c421ea52f3e03dd (patch) | |
tree | 1d54f41e948b16a5ff6ad0cedafccf978a13bd89 /src/vhdl/std_package.adb | |
parent | d1f0fedf7882cf1b15ea6450da5bbd878d007a98 (diff) | |
download | ghdl-53fcf00d88d1a3b34c7833aa4c421ea52f3e03dd.tar.gz ghdl-53fcf00d88d1a3b34c7833aa4c421ea52f3e03dd.tar.bz2 ghdl-53fcf00d88d1a3b34c7833aa4c421ea52f3e03dd.zip |
vhdl: move sem* packages to vhdl children.
Diffstat (limited to 'src/vhdl/std_package.adb')
-rw-r--r-- | src/vhdl/std_package.adb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/vhdl/std_package.adb b/src/vhdl/std_package.adb index a04fafd4c..5dd659d6a 100644 --- a/src/vhdl/std_package.adb +++ b/src/vhdl/std_package.adb @@ -22,7 +22,7 @@ with Str_Table; with Std_Names; use Std_Names; with Flags; use Flags; with Iirs_Utils; -with Sem_Utils; +with Vhdl.Sem_Utils; with Iir_Chains; package body Std_Package is @@ -174,7 +174,7 @@ package body Std_Package is Set_Expr_Staticness (Res, Locally); Set_Name_Staticness (Res, Locally); Set_Enum_Pos (Res, Iir_Int32 (Pos)); - Sem_Utils.Compute_Subprogram_Hash (Res); + Vhdl.Sem_Utils.Compute_Subprogram_Hash (Res); Set_Nth_Element (List, Pos, Res); return Res; end Create_Std_Literal; @@ -195,7 +195,7 @@ package body Std_Package is is Nxt : Iir; begin - Sem_Utils.Create_Implicit_Operations (Decl, True); + Vhdl.Sem_Utils.Create_Implicit_Operations (Decl, True); -- Update Last_Decl loop @@ -359,7 +359,7 @@ package body Std_Package is Set_Chain (Inter, Inter2); end if; - Sem_Utils.Compute_Subprogram_Hash (Decl); + Vhdl.Sem_Utils.Compute_Subprogram_Hash (Decl); Add_Decl (Decl); end Create_To_String; @@ -384,7 +384,7 @@ package body Std_Package is Set_Visible_Flag (Inter, True); Set_Interface_Declaration_Chain (Decl, Inter); - Sem_Utils.Compute_Subprogram_Hash (Decl); + Vhdl.Sem_Utils.Compute_Subprogram_Hash (Decl); Add_Decl (Decl); end Create_Edge_Function; @@ -980,7 +980,7 @@ package body Std_Package is Set_Pure_Flag (Function_Now, False); end if; Set_Implicit_Definition (Function_Now, Iir_Predefined_Now_Function); - Sem_Utils.Compute_Subprogram_Hash (Function_Now); + Vhdl.Sem_Utils.Compute_Subprogram_Hash (Function_Now); Add_Decl (Function_Now); end; |