aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1044/ent.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/issue1044/ent.vhdl')
-rw-r--r--testsuite/synth/issue1044/ent.vhdl3
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/synth/issue1044/ent.vhdl b/testsuite/synth/issue1044/ent.vhdl
index fc98054d0..5c0fb6471 100644
--- a/testsuite/synth/issue1044/ent.vhdl
+++ b/testsuite/synth/issue1044/ent.vhdl
@@ -13,6 +13,9 @@ end;
architecture a of ent is
constant fmul : real := val * 5.0;
constant fneg : real := -val;
+ constant fid : real := +val;
+ constant fabs : real := abs val;
+ constant fexp : real := val ** 2;
begin
lt <= '1' when VAL < 1.5 else '0';
end;