diff options
author | Christos Gentsos <christos.gentsos@cern.ch> | 2019-06-06 15:57:13 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-06-06 19:07:10 +0200 |
commit | 6bd2b7e1da95df0c1799176bbf1f6868f1d587bd (patch) | |
tree | 2b40c0fce6e9dc03acff37e9973f8a4aff266fb4 /src/synth | |
parent | cf86026d150c01cd6d8bf9a70975157f1a01e197 (diff) | |
download | ghdl-6bd2b7e1da95df0c1799176bbf1f6868f1d587bd.tar.gz ghdl-6bd2b7e1da95df0c1799176bbf1f6868f1d587bd.tar.bz2 ghdl-6bd2b7e1da95df0c1799176bbf1f6868f1d587bd.zip |
synth: ignore attribute specifications
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/synth-decls.adb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/synth/synth-decls.adb b/src/synth/synth-decls.adb index 521423e92..b19f40161 100644 --- a/src/synth/synth-decls.adb +++ b/src/synth/synth-decls.adb @@ -101,6 +101,8 @@ package body Synth.Decls is null; when Iir_Kind_Attribute_Declaration => null; + when Iir_Kind_Attribute_Specification => + null; when others => Error_Kind ("synth_declaration", Decl); end case; |