diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-05 08:13:25 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-05 13:55:18 +0200 |
commit | ec5cdde54b8b59e6bb0ecdd05938adc8f40e8521 (patch) | |
tree | dcaf93b4dc1ddda8b069d01f2e9dd8d06124a77d /src/synth | |
parent | 79d521d70cc07e0afa6eb88632ca84aeadd3c62a (diff) | |
download | ghdl-ec5cdde54b8b59e6bb0ecdd05938adc8f40e8521.tar.gz ghdl-ec5cdde54b8b59e6bb0ecdd05938adc8f40e8521.tar.bz2 ghdl-ec5cdde54b8b59e6bb0ecdd05938adc8f40e8521.zip |
vhdl: move evaluation to vhdl child.
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/synth-stmts.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/synth/synth-stmts.adb b/src/synth/synth-stmts.adb index 6acf95fac..8453b58fa 100644 --- a/src/synth/synth-stmts.adb +++ b/src/synth/synth-stmts.adb @@ -28,7 +28,7 @@ with Errorout; use Errorout; with Vhdl.Sem_Expr; with Iirs_Utils; use Iirs_Utils; with Vhdl.Ieee.Std_Logic_1164; -with Evaluation; +with Vhdl.Evaluation; with Synth.Types; use Synth.Types; with Synth.Errors; use Synth.Errors; @@ -197,7 +197,7 @@ package body Synth.Stmts is begin if El_Type = Vhdl.Ieee.Std_Logic_1164.Std_Ulogic_Type then declare - use Evaluation.String_Utils; + use Vhdl.Evaluation.String_Utils; Info : constant Str_Info := Get_Str_Info (Expr); begin |