diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-09-21 18:25:55 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-09-21 18:25:55 +0200 |
commit | efe1c010426ada1846bd1ccce5407e630b275db3 (patch) | |
tree | 363fed7d9d248b5a2076f03250270531d52a4ebc /src/synth/synth-stmts.ads | |
parent | 27656301fac956c7ca558feac3a5037c368d553b (diff) | |
download | ghdl-efe1c010426ada1846bd1ccce5407e630b275db3.tar.gz ghdl-efe1c010426ada1846bd1ccce5407e630b275db3.tar.bz2 ghdl-efe1c010426ada1846bd1ccce5407e630b275db3.zip |
synth: remove T_En from Seq_Context.
Diffstat (limited to 'src/synth/synth-stmts.ads')
-rw-r--r-- | src/synth/synth-stmts.ads | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/synth/synth-stmts.ads b/src/synth/synth-stmts.ads index a60efab72..5b90d7c44 100644 --- a/src/synth/synth-stmts.ads +++ b/src/synth/synth-stmts.ads @@ -63,17 +63,9 @@ private type Seq_Context is record Inst : Synth_Instance_Acc; - -- Control statements execution. - -- If True: statements are always executed. - -- If False: statements are not executed. - -- If Unknown: execution is controlled by W_En. - T_En : Tri_State_Type; - + -- Enable execution. W_En : Wire_Id; - -- If set, condition of the return statement. - W_Ret : Wire_Id; - -- Return value. W_Val : Wire_Id; |