From 640e4c13fc8bd1fd7a0bfddddf7c851b2b171135 Mon Sep 17 00:00:00 2001 From: cderrien <65495526+cderrien@users.noreply.github.com> Date: Tue, 8 Nov 2022 08:02:18 +0100 Subject: Escape port name in dot output. (#2241) --- src/synth/netlists-disp_dot.adb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/synth/netlists-disp_dot.adb b/src/synth/netlists-disp_dot.adb index 2633096ec..2a8a494d3 100644 --- a/src/synth/netlists-disp_dot.adb +++ b/src/synth/netlists-disp_dot.adb @@ -76,7 +76,7 @@ package body Netlists.Disp_Dot is for Idx in 1 .. Get_Nbr_Inputs (M) loop Put (" p"); Put_Uns32 (Uns32 (Idx - 1)); - Put (" [label="""); + Put (" [label=""" & "\"); Dump_Name (Get_Input_Desc (M, Idx - 1).Name); Put ("""];"); New_Line; -- cgit v1.2.3