diff options
author | Tristan Gingold <tgingold@free.fr> | 2014-06-27 05:10:33 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2014-06-27 05:10:33 +0200 |
commit | 5b398416ff4ed12d4488db23819d34b59b9caf78 (patch) | |
tree | 0506e4b5e12537e6281f9309f7e20f16dd668b54 /sem_scopes.adb | |
parent | 788ee650988ef93a947c6804c45dda54ed7d7c4f (diff) | |
download | ghdl-5b398416ff4ed12d4488db23819d34b59b9caf78.tar.gz ghdl-5b398416ff4ed12d4488db23819d34b59b9caf78.tar.bz2 ghdl-5b398416ff4ed12d4488db23819d34b59b9caf78.zip |
vhdl2008: add overloaded to_string predefined functions.
Diffstat (limited to 'sem_scopes.adb')
-rw-r--r-- | sem_scopes.adb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sem_scopes.adb b/sem_scopes.adb index e00ffb809..b50d4c2c5 100644 --- a/sem_scopes.adb +++ b/sem_scopes.adb @@ -925,6 +925,11 @@ package body Sem_Scopes is when Iir_Kinds_Signal_Attribute => null; + when Iir_Kind_Protected_Type_Body => + -- FIXME: allowed only in debugger (if the current scope is + -- within a package body) ? + null; + when others => Error_Kind ("iterator_decl", Decl); end case; |