aboutsummaryrefslogtreecommitdiffstats
path: root/src/std_names.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-11-04 18:50:58 +0100
committerTristan Gingold <tgingold@free.fr>2019-11-04 18:50:58 +0100
commit83331b92f6763f42342303077d13a7bee505900b (patch)
treebda1d8468177daf3d4dd760a1d28d81847dce24e /src/std_names.adb
parentb1aa6c0603351edaf0f07bacc73ded539d16ee57 (diff)
downloadghdl-83331b92f6763f42342303077d13a7bee505900b.tar.gz
ghdl-83331b92f6763f42342303077d13a7bee505900b.tar.bz2
ghdl-83331b92f6763f42342303077d13a7bee505900b.zip
vhdl-scanner: handle 'synopsys' pragma.
Diffstat (limited to 'src/std_names.adb')
-rw-r--r--src/std_names.adb11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/std_names.adb b/src/std_names.adb
index aba33a9f6..ff53371f0 100644
--- a/src/std_names.adb
+++ b/src/std_names.adb
@@ -608,9 +608,6 @@ package body Std_Names is
Def ("item", Name_Item);
Def ("__FILE__", Name_Uu_File_Uu);
Def ("__LINE__", Name_Uu_Line_Uu);
- Def ("synthesis", Name_Synthesis);
- Def ("translate_off", Name_Translate_Off);
- Def ("translate_on", Name_Translate_On);
Def ("label_applies_to", Name_Label_Applies_To);
Def ("return_port_name", Name_Return_Port_Name);
Def ("map_to_operator", Name_Map_To_Operator);
@@ -766,8 +763,12 @@ package body Std_Names is
Def ("valueOf", Name_uValueof);
-- VHDL special comments
- Def ("psl", Name_Psl);
- Def ("pragma", Name_Pragma);
+ Def ("psl", Name_Psl);
+ Def ("pragma", Name_Pragma);
+ Def ("synthesis", Name_Synthesis);
+ Def ("synopsys", Name_Synopsys);
+ Def ("translate_off", Name_Translate_Off);
+ Def ("translate_on", Name_Translate_On);
-- PSL keywords
Def ("a", Name_A);