aboutsummaryrefslogtreecommitdiffstats
path: root/parse.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2014-06-21 21:24:15 +0200
committerTristan Gingold <tgingold@free.fr>2014-06-21 21:24:15 +0200
commit212268f54c947f4360a7d0e5b45faa97f76a4a9d (patch)
tree76a19a1ff148903c412f9f2191901ee6797b2939 /parse.adb
parent270280a34295fa42785f9c8d99ad24b93d411e0c (diff)
downloadghdl-212268f54c947f4360a7d0e5b45faa97f76a4a9d.tar.gz
ghdl-212268f54c947f4360a7d0e5b45faa97f76a4a9d.tar.bz2
ghdl-212268f54c947f4360a7d0e5b45faa97f76a4a9d.zip
Add psl cover directive (ticket19).
Diffstat (limited to 'parse.adb')
-rw-r--r--parse.adb14
1 files changed, 12 insertions, 2 deletions
diff --git a/parse.adb b/parse.adb
index a6351d84b..df8ce384e 100644
--- a/parse.adb
+++ b/parse.adb
@@ -5640,7 +5640,16 @@ package body Parse is
is
Res : Iir;
begin
- Res := Create_Iir (Iir_Kind_Psl_Assert_Statement);
+ case Current_Token is
+ when Tok_Psl_Assert =>
+ Res := Create_Iir (Iir_Kind_Psl_Assert_Statement);
+ when Tok_Psl_Cover =>
+ Res := Create_Iir (Iir_Kind_Psl_Cover_Statement);
+ when others =>
+ raise Internal_Error;
+ end case;
+
+ -- Scan extended PSL tokens.
Scanner.Flag_Psl := True;
-- Skip 'assert'
@@ -5791,7 +5800,8 @@ package body Parse is
| Tok_Psl_Endpoint =>
Postponed_Not_Allowed;
Stmt := Parse_Psl_Declaration;
- when Tok_Psl_Assert =>
+ when Tok_Psl_Assert
+ | Tok_Psl_Cover =>
Postponed_Not_Allowed;
Stmt := Parse_Psl_Assert_Statement;
when others =>