aboutsummaryrefslogtreecommitdiffstats
path: root/src/std_names.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-05-07 19:47:46 +0200
committerTristan Gingold <tgingold@free.fr>2021-05-07 19:47:46 +0200
commit7df971683e4637b146a26a9995eb7ebb0f3588bc (patch)
treee22dfdb91389177419ae9a7b224b9c2403418804 /src/std_names.ads
parent29aa770398bd26fb82f6322e887f8313de77f96f (diff)
downloadghdl-7df971683e4637b146a26a9995eb7ebb0f3588bc.tar.gz
ghdl-7df971683e4637b146a26a9995eb7ebb0f3588bc.tar.bz2
ghdl-7df971683e4637b146a26a9995eb7ebb0f3588bc.zip
std_names: add full and parallel case.
Diffstat (limited to 'src/std_names.ads')
-rw-r--r--src/std_names.ads6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/std_names.ads b/src/std_names.ads
index 46b7542df..45558cb48 100644
--- a/src/std_names.ads
+++ b/src/std_names.ads
@@ -920,7 +920,7 @@ package Std_Names is
-- while
Name_Last_BSV : constant Name_Id := Name_First_BSV + 49;
- -- VHDL special comments
+ -- Special comments
Name_First_Comment : constant Name_Id := Name_Last_BSV + 1;
Name_Psl : constant Name_Id := Name_First_Comment + 0;
Name_Pragma : constant Name_Id := Name_First_Comment + 1;
@@ -932,7 +932,9 @@ package Std_Names is
Name_Synthesis_Off : constant Name_Id := Name_First_Comment + 7;
Name_Synthesis_On : constant Name_Id := Name_First_Comment + 8;
Name_Off : constant Name_Id := Name_First_Comment + 9;
- Name_Last_Comment : constant Name_Id := Name_Off;
+ Name_Full_Case : constant Name_Id := Name_First_Comment + 10;
+ Name_Parallel_Case : constant Name_Id := Name_First_Comment + 11;
+ Name_Last_Comment : constant Name_Id := Name_Parallel_Case;
-- PSL words.
Name_First_PSL : constant Name_Id := Name_Last_Comment + 1;