diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-07-25 06:10:38 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-07-25 06:10:38 +0200 |
commit | f992c33f302b0e5060d30dedff94ee9fa15190ef (patch) | |
tree | e114467749e011cf29454483b9bc93a3a8a09f35 /src/synth | |
parent | 8d8e3fd40444b7f8c11e6ff510d1fbf70b7954af (diff) | |
download | ghdl-f992c33f302b0e5060d30dedff94ee9fa15190ef.tar.gz ghdl-f992c33f302b0e5060d30dedff94ee9fa15190ef.tar.bz2 ghdl-f992c33f302b0e5060d30dedff94ee9fa15190ef.zip |
vhdl+synth: recognize /= to std_logic_unsigned.
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/synth-expr.adb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/synth/synth-expr.adb b/src/synth/synth-expr.adb index 01b5ac649..5ace33ed3 100644 --- a/src/synth/synth-expr.adb +++ b/src/synth/synth-expr.adb @@ -813,6 +813,9 @@ package body Synth.Expr is | Iir_Predefined_Ieee_Std_Logic_Unsigned_Eq_Slv_Slv => -- "=" (Unsigned, Unsigned) [resize] return Synth_Compare_Uns_Uns (Id_Eq); + when Iir_Predefined_Ieee_Std_Logic_Unsigned_Ne_Slv_Slv => + -- "/=" (Unsigned, Unsigned) [resize] + return Synth_Compare_Uns_Uns (Id_Ne); when Iir_Predefined_Ieee_Numeric_Std_Ne_Uns_Nat => -- "/=" (Unsigned, Natural) return Synth_Compare_Uns_Nat (Id_Ne); |