diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-06-04 09:13:13 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-06-04 16:27:49 +0200 |
commit | 0b9d3bd73f2e91efdbf5e491f0cfe6ca984e50a5 (patch) | |
tree | 04c409ea8c40c577a5da8ca0da364fd6311ed9fe | |
parent | f873332f7bd50ae8bae3ee70b15d6ad616f6ad05 (diff) | |
download | ghdl-0b9d3bd73f2e91efdbf5e491f0cfe6ca984e50a5.tar.gz ghdl-0b9d3bd73f2e91efdbf5e491f0cfe6ca984e50a5.tar.bz2 ghdl-0b9d3bd73f2e91efdbf5e491f0cfe6ca984e50a5.zip |
vhdl-sem_scopes: handle state_suspend
-rw-r--r-- | src/vhdl/vhdl-sem_scopes.adb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vhdl/vhdl-sem_scopes.adb b/src/vhdl/vhdl-sem_scopes.adb index 29c355f9a..086660316 100644 --- a/src/vhdl/vhdl-sem_scopes.adb +++ b/src/vhdl/vhdl-sem_scopes.adb @@ -1116,7 +1116,8 @@ package body Vhdl.Sem_Scopes is | Iir_Kind_Signal_Attribute_Declaration => null; - when Iir_Kind_Protected_Type_Body => + when Iir_Kind_Protected_Type_Body + | Iir_Kind_Suspend_State_Declaration => -- FIXME: allowed only in debugger (if the current scope is -- within a package body) ? null; |