diff options
author | Tristan Gingold <tgingold@free.fr> | 2018-12-30 13:42:00 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2018-12-30 13:42:00 +0100 |
commit | 0ab295130159da82ef9c5660bf4f2a8f2b76ec48 (patch) | |
tree | 69de001ae92215b5f697c04f20d4e5d1421b5726 | |
parent | 1b9d74472c032ac9f4f2d511af5e3a33c59cc7bc (diff) | |
download | ghdl-0ab295130159da82ef9c5660bf4f2a8f2b76ec48.tar.gz ghdl-0ab295130159da82ef9c5660bf4f2a8f2b76ec48.tar.bz2 ghdl-0ab295130159da82ef9c5660bf4f2a8f2b76ec48.zip |
parse: improve error message.
-rw-r--r-- | src/vhdl/parse.adb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vhdl/parse.adb b/src/vhdl/parse.adb index 0b4294c1b..e0f42eb0e 100644 --- a/src/vhdl/parse.adb +++ b/src/vhdl/parse.adb @@ -482,7 +482,8 @@ package body Parse is Scan; if Current_Token = Tok_Out then -- Nice message for Ada users... - Error_Msg_Parse ("typo error, in out must be 'inout' in vhdl"); + Error_Msg_Parse + ("typo error, 'in out' must be 'inout' in vhdl"); Scan; return Iir_Inout_Mode; end if; |