diff options
author | Tristan Gingold <tgingold@free.fr> | 2016-09-25 04:05:31 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2016-09-25 04:05:31 +0200 |
commit | 080741e1cd0132378c392e71ff23b6ee55e48ddb (patch) | |
tree | c767a91f62942cfa7d4efbff8afaef3e54aaf9c4 /src/ghdldrv | |
parent | 01f485580d90cdea224e15aa3d583f5c987d2c77 (diff) | |
download | ghdl-080741e1cd0132378c392e71ff23b6ee55e48ddb.tar.gz ghdl-080741e1cd0132378c392e71ff23b6ee55e48ddb.tar.bz2 ghdl-080741e1cd0132378c392e71ff23b6ee55e48ddb.zip |
vhdl08: parse parameter reserved word.
Diffstat (limited to 'src/ghdldrv')
-rw-r--r-- | src/ghdldrv/ghdlprint.adb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ghdldrv/ghdlprint.adb b/src/ghdldrv/ghdlprint.adb index 9df87930b..00fc9c25a 100644 --- a/src/ghdldrv/ghdlprint.adb +++ b/src/ghdldrv/ghdlprint.adb @@ -386,7 +386,8 @@ package body Ghdlprint is Disp_Reserved; when Tok_Protected => Disp_Reserved; - when Tok_Context => + when Tok_Context + | Tok_Parameter => Disp_Reserved; when Tok_Across .. Tok_Tolerance => Disp_Reserved; |