aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-05-09 15:50:27 +0200
committerTristan Gingold <tgingold@free.fr>2020-05-09 16:31:20 +0200
commit23c923649a05e35bf57da3b290ea2136e761f565 (patch)
treea19e194269866ad28e0d1be440ab635e486f3023 /src/vhdl
parentc9d2cccb38b985783108f187398a0a0af9f6ab62 (diff)
downloadghdl-23c923649a05e35bf57da3b290ea2136e761f565.tar.gz
ghdl-23c923649a05e35bf57da3b290ea2136e761f565.tar.bz2
ghdl-23c923649a05e35bf57da3b290ea2136e761f565.zip
synth: correctly quote nets name in error messages.
Diffstat (limited to 'src/vhdl')
-rw-r--r--src/vhdl/vhdl-errors.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vhdl/vhdl-errors.adb b/src/vhdl/vhdl-errors.adb
index 15eadf19e..dfae1afe8 100644
--- a/src/vhdl/vhdl-errors.adb
+++ b/src/vhdl/vhdl-errors.adb
@@ -1096,7 +1096,7 @@ package body Vhdl.Errors is
begin
case Format is
when 'i' =>
- Output_Identifier (Get_Identifier (N));
+ Output_Quoted_Identifier (Get_Identifier (N));
when 'l' =>
Output_Location (Err, Get_Location (N));
when 'n' =>