aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-evaluation.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-12-26 18:05:51 +0100
committerTristan Gingold <tgingold@free.fr>2019-12-28 18:45:25 +0100
commita52af2f98e34648a2a9b056b11da518a60a6c6cd (patch)
tree32e150cfbe061e6f20d0c3d4cb57e23abb0f315e /src/vhdl/vhdl-evaluation.adb
parent8a5fe99b279b1ce1ea7fe4313a24d0f3a399149d (diff)
downloadghdl-a52af2f98e34648a2a9b056b11da518a60a6c6cd.tar.gz
ghdl-a52af2f98e34648a2a9b056b11da518a60a6c6cd.tar.bz2
ghdl-a52af2f98e34648a2a9b056b11da518a60a6c6cd.zip
vhdl: improve support of AMS-vhdl (array and record natures, source quantities)
Diffstat (limited to 'src/vhdl/vhdl-evaluation.adb')
-rw-r--r--src/vhdl/vhdl-evaluation.adb5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vhdl/vhdl-evaluation.adb b/src/vhdl/vhdl-evaluation.adb
index 64aec4488..50e279a8f 100644
--- a/src/vhdl/vhdl-evaluation.adb
+++ b/src/vhdl/vhdl-evaluation.adb
@@ -1725,6 +1725,7 @@ package body Vhdl.Evaluation is
| Iir_Predefined_Access_Inequality
| Iir_Predefined_TF_Array_Not
| Iir_Predefined_Now_Function
+ | Iir_Predefined_Real_Now_Function
| Iir_Predefined_Deallocate
| Iir_Predefined_Write
| Iir_Predefined_Read
@@ -3147,7 +3148,9 @@ package body Vhdl.Evaluation is
begin
Assoc := Get_Parameter_Association_Chain (Expr);
while Is_Valid (Assoc) loop
- case Iir_Kinds_Association_Element (Get_Kind (Assoc)) is
+ case Iir_Kinds_Association_Element_Parameters
+ (Get_Kind (Assoc))
+ is
when Iir_Kind_Association_Element_By_Expression =>
Assoc_Expr := Get_Actual (Assoc);
if not Can_Eval_Value (Assoc_Expr, False) then