diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-04-13 21:24:02 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-04-13 21:24:02 +0200 |
commit | 52cecb9c6e7efb0bd20ef30e4aba564d1e205011 (patch) | |
tree | 6fa8e0ab955144de0cfc878bb6233db60c70ab9a /src | |
parent | e27f34463e29f83a2bf1c4db140773326cdcf1fd (diff) | |
download | ghdl-52cecb9c6e7efb0bd20ef30e4aba564d1e205011.tar.gz ghdl-52cecb9c6e7efb0bd20ef30e4aba564d1e205011.tar.bz2 ghdl-52cecb9c6e7efb0bd20ef30e4aba564d1e205011.zip |
synth: do not emit a warning for the gclk attribute. Fix #2035
Diffstat (limited to 'src')
-rw-r--r-- | src/synth/synth-vhdl_stmts.adb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/synth/synth-vhdl_stmts.adb b/src/synth/synth-vhdl_stmts.adb index e949d56d4..b2655a2d6 100644 --- a/src/synth/synth-vhdl_stmts.adb +++ b/src/synth/synth-vhdl_stmts.adb @@ -3756,7 +3756,8 @@ package body Synth.Vhdl_Stmts is when Name_Anyseq => Synth_Attribute_Formal (Syn_Inst, Val, Id_Anyseq); when Name_Loc - | Name_Keep => + | Name_Keep + | Name_Gclk => -- Applies to nets/ports. null; when others => |