diff options
author | Christos Gentsos <christos.gentsos@cern.ch> | 2019-06-05 15:08:43 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-06-06 18:45:45 +0200 |
commit | f7fcb3ac99f3d688b612909c5de59077c7feedaf (patch) | |
tree | 8d3010a85152aa5f3612a97ee33fbaae5fc151a5 | |
parent | ffc7968a3ad1ff44421296e66532b7fbcb3f908b (diff) | |
download | ghdl-f7fcb3ac99f3d688b612909c5de59077c7feedaf.tar.gz ghdl-f7fcb3ac99f3d688b612909c5de59077c7feedaf.tar.bz2 ghdl-f7fcb3ac99f3d688b612909c5de59077c7feedaf.zip |
synth-decls: ignore attribute declarations
-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 545e3b408..521423e92 100644 --- a/src/synth/synth-decls.adb +++ b/src/synth/synth-decls.adb @@ -99,6 +99,8 @@ package body Synth.Decls is when Iir_Kind_Procedure_Body | Iir_Kind_Function_Body => null; + when Iir_Kind_Attribute_Declaration => + null; when others => Error_Kind ("synth_declaration", Decl); end case; |