aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-06-27 20:59:16 +0200
committerTristan Gingold <tgingold@free.fr>2022-06-27 20:59:16 +0200
commitdabf31c2b12633033cea5a177f0deefe28c05c9b (patch)
treecb52936fae160ce9a819720d40307123d411dfa7 /src
parent223ea757ec1959bfa0be149071fd5568c4c61982 (diff)
downloadghdl-dabf31c2b12633033cea5a177f0deefe28c05c9b.tar.gz
ghdl-dabf31c2b12633033cea5a177f0deefe28c05c9b.tar.bz2
ghdl-dabf31c2b12633033cea5a177f0deefe28c05c9b.zip
netlists-disp_verilog: fix warning
Diffstat (limited to 'src')
-rw-r--r--src/synth/netlists-disp_verilog.adb3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/synth/netlists-disp_verilog.adb b/src/synth/netlists-disp_verilog.adb
index 3097e758a..47fa0047a 100644
--- a/src/synth/netlists-disp_verilog.adb
+++ b/src/synth/netlists-disp_verilog.adb
@@ -246,13 +246,14 @@ package body Netlists.Disp_Verilog is
-- Outputs
Idx := 0;
for O of Outputs (Inst) loop
+ Desc := Get_Output_Desc (Imod, Idx);
if First then
First := False;
else
Put_Line (",");
end if;
Put (" .");
- Put_Interface_Name (Get_Output_Desc (Imod, Idx).Name);
+ Put_Interface_Name (Desc.Name);
Idx := Idx + 1;
Put ("(");
declare