diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-08-06 06:58:39 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-08-06 09:16:19 +0200 |
commit | 3b80a2e5a9545422e9808f6f3b3f9c4a2421433b (patch) | |
tree | 22ea684d58cd77e94b780e8e5c9499c3c67fbac1 /src/vhdl/vhdl-prints.adb | |
parent | ece6e78f537b4f16b020d2eb258038d00a794559 (diff) | |
download | ghdl-3b80a2e5a9545422e9808f6f3b3f9c4a2421433b.tar.gz ghdl-3b80a2e5a9545422e9808f6f3b3f9c4a2421433b.tar.bz2 ghdl-3b80a2e5a9545422e9808f6f3b3f9c4a2421433b.zip |
vhdl: introduce iir_kind_association_element_by_name
Diffstat (limited to 'src/vhdl/vhdl-prints.adb')
-rw-r--r-- | src/vhdl/vhdl-prints.adb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vhdl/vhdl-prints.adb b/src/vhdl/vhdl-prints.adb index 35a6f4958..c0abf532e 100644 --- a/src/vhdl/vhdl-prints.adb +++ b/src/vhdl/vhdl-prints.adb @@ -3316,7 +3316,7 @@ package body Vhdl.Prints is end if; -- Formal part. - if Get_Kind (El) = Iir_Kind_Association_Element_By_Expression then + if Get_Kind (El) in Iir_Kinds_Association_Element_By_Actual then Conv := Get_Formal_Conversion (El); if Conv /= Null_Iir then Disp_Conversion (Ctxt, Conv); @@ -3342,7 +3342,8 @@ package body Vhdl.Prints is | Iir_Kind_Association_Element_Subprogram | Iir_Kind_Association_Element_Terminal => Print (Ctxt, Get_Actual (El)); - when Iir_Kind_Association_Element_By_Expression => + when Iir_Kind_Association_Element_By_Expression + | Iir_Kind_Association_Element_By_Name => Conv := Get_Actual_Conversion (El); if Conv /= Null_Iir then Disp_Conversion (Ctxt, Conv); |