diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-10-16 05:36:56 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-10-16 05:36:56 +0200 |
commit | 33242bea99a7ccda56ec399d4f1b7a064c7d784b (patch) | |
tree | 2e9ecae0612fd68084d4a0f395527035d2e89659 /src | |
parent | 80cb14833b1e48279f5c6bffdc75af1618183983 (diff) | |
download | ghdl-33242bea99a7ccda56ec399d4f1b7a064c7d784b.tar.gz ghdl-33242bea99a7ccda56ec399d4f1b7a064c7d784b.tar.bz2 ghdl-33242bea99a7ccda56ec399d4f1b7a064c7d784b.zip |
scanner: allow any characters in comment with vhdl02 or later.
Diffstat (limited to 'src')
-rw-r--r-- | src/vhdl/scanner.adb | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/vhdl/scanner.adb b/src/vhdl/scanner.adb index d9039fcc6..43e33ae63 100644 --- a/src/vhdl/scanner.adb +++ b/src/vhdl/scanner.adb @@ -1452,7 +1452,20 @@ package body Scanner is Source (Pos) /= VT and Source (Pos) /= FF and Source (Pos) /= Files_Map.EOT loop - if not Flags.Mb_Comment + -- LRM93 13.1 + -- The only characters allowed in the text of a VHDL + -- description are the graphic characters and the format + -- effectors. + + -- LRM02 13.1 Character set + -- The only characters allowed in the text of a VHDL + -- description (except within comments -- see 13.8) [...] + -- + -- LRM02 13.8 Comments + -- A comment [...] may contain any character except the + -- format effectors vertical tab, carriage return, line + -- feed and form feed. + if not (Flags.Mb_Comment or Vhdl_Std >= Vhdl_02) and then Characters_Kind (Source (Pos)) = Invalid then Error_Msg_Scan ("invalid character, even in a comment"); |