diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-09-06 05:34:01 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-09-06 05:34:01 +0200 |
commit | 1cf3b7f84f2b1646425f3b9e31237bf7e1ec667f (patch) | |
tree | c717453fb656021175b826324f531959dd2c5650 /src/vhdl/canon.adb | |
parent | 9ed2199d83ebf4beaca2d6381c9f552165b8ba5f (diff) | |
download | ghdl-1cf3b7f84f2b1646425f3b9e31237bf7e1ec667f.tar.gz ghdl-1cf3b7f84f2b1646425f3b9e31237bf7e1ec667f.tar.bz2 ghdl-1cf3b7f84f2b1646425f3b9e31237bf7e1ec667f.zip |
Also fix for next/exit statement.
Part of #407
Diffstat (limited to 'src/vhdl/canon.adb')
-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 39f83e712..96f8e02c7 100644 --- a/src/vhdl/canon.adb +++ b/src/vhdl/canon.adb @@ -375,7 +375,7 @@ package body Canon is | Iir_Kind_Exit_Statement => -- LRM08 11.3 -- See assertion_statement case. - Canon_Extract_Sensitivity + Canon_Extract_Sensitivity_If_Not_Null (Get_Condition (Stmt), List); when Iir_Kind_Return_Statement => -- LRM08 11.3 |