aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/simulate/simul-debugger.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-05 07:18:49 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-05 08:05:10 +0200
commit53fcf00d88d1a3b34c7833aa4c421ea52f3e03dd (patch)
tree1d54f41e948b16a5ff6ad0cedafccf978a13bd89 /src/vhdl/simulate/simul-debugger.adb
parentd1f0fedf7882cf1b15ea6450da5bbd878d007a98 (diff)
downloadghdl-53fcf00d88d1a3b34c7833aa4c421ea52f3e03dd.tar.gz
ghdl-53fcf00d88d1a3b34c7833aa4c421ea52f3e03dd.tar.bz2
ghdl-53fcf00d88d1a3b34c7833aa4c421ea52f3e03dd.zip
vhdl: move sem* packages to vhdl children.
Diffstat (limited to 'src/vhdl/simulate/simul-debugger.adb')
-rw-r--r--src/vhdl/simulate/simul-debugger.adb14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/vhdl/simulate/simul-debugger.adb b/src/vhdl/simulate/simul-debugger.adb
index 10789cb25..8c911a706 100644
--- a/src/vhdl/simulate/simul-debugger.adb
+++ b/src/vhdl/simulate/simul-debugger.adb
@@ -26,8 +26,8 @@ with Files_Map;
with Vhdl.Parse;
with Vhdl.Scanner;
with Vhdl.Tokens;
-with Sem_Expr;
-with Sem_Scopes;
+with Vhdl.Sem_Expr;
+with Vhdl.Sem_Scopes;
with Vhdl.Canon;
with Std_Names;
with Libraries;
@@ -1750,7 +1750,7 @@ package body Simul.Debugger is
procedure Add_Decls_For (N : Iir)
is
- use Sem_Scopes;
+ use Vhdl.Sem_Scopes;
begin
case Get_Kind (N) is
when Iir_Kind_Entity_Declaration =>
@@ -1819,7 +1819,7 @@ package body Simul.Debugger is
procedure Enter_Scope (Node : Iir)
is
- use Sem_Scopes;
+ use Vhdl.Sem_Scopes;
begin
Push_Interpretations;
Open_Declarative_Region;
@@ -1833,7 +1833,7 @@ package body Simul.Debugger is
procedure Del_Decls_For (N : Iir)
is
- use Sem_Scopes;
+ use Vhdl.Sem_Scopes;
begin
case Get_Kind (N) is
when Iir_Kind_Entity_Declaration =>
@@ -1858,7 +1858,7 @@ package body Simul.Debugger is
procedure Leave_Scope (Node : Iir)
is
- use Sem_Scopes;
+ use Vhdl.Sem_Scopes;
begin
Foreach_Scopes (Node, Del_Decls_For'Access);
@@ -1914,7 +1914,7 @@ package body Simul.Debugger is
end if;
Enter_Scope (Dbg_Cur_Frame.Stmt);
- Expr := Sem_Expr.Sem_Expression_Universal (Expr);
+ Expr := Vhdl.Sem_Expr.Sem_Expression_Universal (Expr);
Leave_Scope (Dbg_Cur_Frame.Stmt);
if Expr = Null_Iir