diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-09-06 05:27:30 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-09-06 05:27:30 +0200 |
commit | 6e7e499cfecd96f3450f90c1f438e59e288b376c (patch) | |
tree | 45ab9ca687c60369789ed22dac7b5785d14445fd /src/vhdl | |
parent | 0e866eed7dc5adb6eb3426d27fc8fdc9aac69e26 (diff) | |
download | ghdl-6e7e499cfecd96f3450f90c1f438e59e288b376c.tar.gz ghdl-6e7e499cfecd96f3450f90c1f438e59e288b376c.tar.bz2 ghdl-6e7e499cfecd96f3450f90c1f438e59e288b376c.zip |
Fix crash on report stmt in all sentisitized process
Fix #407
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/canon.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vhdl/canon.adb b/src/vhdl/canon.adb index a25582c65..d2c3cc8c3 100644 --- a/src/vhdl/canon.adb +++ b/src/vhdl/canon.adb @@ -367,7 +367,7 @@ package body Canon is when Iir_Kind_Report_Statement => -- LRM08 11.3 -- See assertion_statement case. - Canon_Extract_Sensitivity + Canon_Extract_Sensitivity_If_Not_Null (Get_Severity_Expression (Stmt), List); Canon_Extract_Sensitivity (Get_Report_Expression (Stmt), List); |