diff options
author | Tristan Gingold <tgingold@free.fr> | 2014-06-29 16:38:56 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2014-06-29 16:38:56 +0200 |
commit | 13f260fca9cd8531b4a2af1d43a78c249197f931 (patch) | |
tree | e7120982652c795cdc37972da7f181d1a3765f3f /canon.adb | |
parent | cde6aede1c8851fa0b64e548c5b9a391c1d6af8a (diff) | |
download | ghdl-13f260fca9cd8531b4a2af1d43a78c249197f931.tar.gz ghdl-13f260fca9cd8531b4a2af1d43a78c249197f931.tar.bz2 ghdl-13f260fca9cd8531b4a2af1d43a78c249197f931.zip |
vhdl 2008: handle all-sensitized processes, handle visibility for alias.
Diffstat (limited to 'canon.adb')
-rw-r--r-- | canon.adb | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1570,6 +1570,14 @@ package body Canon is if Canon_Flag_Sequentials_Stmts then Canon_Sequential_Stmts (Get_Sequential_Statement_Chain (El)); end if; + if Canon_Flag_All_Sensitivity + and then Canon_Flag_Sequentials_Stmts + and then Get_Kind (El) = Iir_Kind_Sensitized_Process_Statement + and then Get_Sensitivity_List (El) = Iir_List_All + then + Set_Sensitivity_List + (El, Canon_Extract_Process_Sensitivity (El)); + end if; when Iir_Kind_Component_Instantiation_Statement => declare |