diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-12-26 09:10:02 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-12-26 10:25:20 +0100 |
commit | 9d4d4c09883d373f01861f827e793d754aeaa7d7 (patch) | |
tree | bae91ab9a1876abe8259bde0a1659d747df93c69 /src/vhdl | |
parent | 8a6be3328e812256abd7b01e965ac60630a70888 (diff) | |
download | ghdl-9d4d4c09883d373f01861f827e793d754aeaa7d7.tar.gz ghdl-9d4d4c09883d373f01861f827e793d754aeaa7d7.tar.bz2 ghdl-9d4d4c09883d373f01861f827e793d754aeaa7d7.zip |
vhdl-canon: handle unaffected
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/vhdl-canon.adb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-canon.adb b/src/vhdl/vhdl-canon.adb index 95f531cf8..8e4bfd588 100644 --- a/src/vhdl/vhdl-canon.adb +++ b/src/vhdl/vhdl-canon.adb @@ -362,6 +362,7 @@ package body Vhdl.Canon is begin We := Chain; while We /= Null_Iir loop + exit when Get_Kind (We) = Iir_Kind_Unaffected_Waveform; Canon_Extract_Sensitivity_Expression (Get_We_Value (We), List); Canon_Extract_Sensitivity_If_Not_Null (Get_Time (We), List); We := Get_Chain (We); |