diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-04 21:59:35 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-04 21:59:35 +0200 |
commit | 7ca14ac72c36c363d8f874c266c2730f209a0edd (patch) | |
tree | bbb7bd17960299bc03da84c1b37e0e4dafdf31c4 /src/vhdl/simulate | |
parent | fc028b5d21727da66dc8e146b3dbcfc870c64f90 (diff) | |
download | ghdl-7ca14ac72c36c363d8f874c266c2730f209a0edd.tar.gz ghdl-7ca14ac72c36c363d8f874c266c2730f209a0edd.tar.bz2 ghdl-7ca14ac72c36c363d8f874c266c2730f209a0edd.zip |
vhdl: move tokens as vhdl child package.
Diffstat (limited to 'src/vhdl/simulate')
-rw-r--r-- | src/vhdl/simulate/simul-debugger.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/simulate/simul-debugger.adb b/src/vhdl/simulate/simul-debugger.adb index 3e868a44a..c257b909d 100644 --- a/src/vhdl/simulate/simul-debugger.adb +++ b/src/vhdl/simulate/simul-debugger.adb @@ -25,7 +25,7 @@ with Str_Table; with Files_Map; with Parse; with Vhdl.Scanner; -with Tokens; +with Vhdl.Tokens; with Sem_Expr; with Sem_Scopes; with Canon; @@ -1869,7 +1869,7 @@ package body Simul.Debugger is procedure Print_Proc (Line : String) is - use Tokens; + use Vhdl.Tokens; Index_Str : String := Natural'Image (Buffer_Index); File : Source_File_Entry; Expr : Iir; |