diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-02-29 11:27:55 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-02-29 11:27:55 +0100 |
commit | 62a8c4ba331132b2e0be886673d769e2f742834f (patch) | |
tree | ac23295a43750d3fcd5e00395d3e45d9a0aeda3e /src | |
parent | 3d2b4e54964242203e77cd0abfdc9c45c4cc3132 (diff) | |
download | ghdl-62a8c4ba331132b2e0be886673d769e2f742834f.tar.gz ghdl-62a8c4ba331132b2e0be886673d769e2f742834f.tar.bz2 ghdl-62a8c4ba331132b2e0be886673d769e2f742834f.zip |
synth-static_oper: handle enum inequality.
Diffstat (limited to 'src')
-rw-r--r-- | src/synth/synth-static_oper.adb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/synth/synth-static_oper.adb b/src/synth/synth-static_oper.adb index e0d82a5b3..a76f9b5e0 100644 --- a/src/synth/synth-static_oper.adb +++ b/src/synth/synth-static_oper.adb @@ -322,6 +322,9 @@ package body Synth.Static_Oper is when Iir_Predefined_Enum_Equality => return Create_Value_Discrete (Boolean'Pos (Left.Scal = Right.Scal), Boolean_Type); + when Iir_Predefined_Enum_Inequality => + return Create_Value_Discrete + (Boolean'Pos (Left.Scal /= Right.Scal), Boolean_Type); when Iir_Predefined_Integer_Plus => return Create_Value_Discrete |