diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-06-05 22:15:19 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-06-05 22:15:19 +0200 |
commit | 60b3a419cfbd279ff4c477cfcab924b646d5c444 (patch) | |
tree | 61340f855fd0b0d8472bc1a8ee2fe4b72659fa7c /src/synth/synth-vhdl_expr.adb | |
parent | a638e3a2b4af985b6ed874f45eef5d65c19aea20 (diff) | |
download | ghdl-60b3a419cfbd279ff4c477cfcab924b646d5c444.tar.gz ghdl-60b3a419cfbd279ff4c477cfcab924b646d5c444.tar.bz2 ghdl-60b3a419cfbd279ff4c477cfcab924b646d5c444.zip |
synth-vhdl_eval: handle more operations
Diffstat (limited to 'src/synth/synth-vhdl_expr.adb')
-rw-r--r-- | src/synth/synth-vhdl_expr.adb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/synth/synth-vhdl_expr.adb b/src/synth/synth-vhdl_expr.adb index 75d7d7e78..ff44a926d 100644 --- a/src/synth/synth-vhdl_expr.adb +++ b/src/synth/synth-vhdl_expr.adb @@ -2063,7 +2063,8 @@ package body Synth.Vhdl_Expr is begin case Get_Implicit_Definition (Imp) is when Iir_Predefined_Operators - | Iir_Predefined_Ieee_Numeric_Std_Binary_Operators => + | Iir_Predefined_Ieee_Numeric_Std_Binary_Operators + | Iir_Predefined_Ieee_Numeric_Std_Unsigned_Operators => return Synth_Operator_Function_Call (Syn_Inst, Expr); when Iir_Predefined_None => return Synth_User_Function_Call (Syn_Inst, Expr); |