diff options
Diffstat (limited to 'src/synth/synth-static_oper.adb')
-rw-r--r-- | src/synth/synth-static_oper.adb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/synth/synth-static_oper.adb b/src/synth/synth-static_oper.adb index e366aefb9..c756bd3b0 100644 --- a/src/synth/synth-static_oper.adb +++ b/src/synth/synth-static_oper.adb @@ -514,6 +514,8 @@ package body Synth.Static_Oper is when Iir_Predefined_Integer_Negation => return Create_Value_Discrete (-Operand.Scal, Oper_Typ); + when Iir_Predefined_Integer_Absolute => + return Create_Value_Discrete (abs Operand.Scal, Oper_Typ); when Iir_Predefined_Floating_Negation => return Create_Value_Float (-Operand.Fp, Oper_Typ); |