diff options
author | Tristan Gingold <tgingold@free.fr> | 2016-08-26 05:06:43 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2016-08-26 05:06:43 +0200 |
commit | 313d7236a7fafd130d27daa6f5e3beff3bfe08c9 (patch) | |
tree | f6ed6a71d0f9cbb3bccc1ad18fae71b7055886bf /src/vhdl | |
parent | c7182c8329d493b3a953521fff55e3c635e5cf00 (diff) | |
download | ghdl-313d7236a7fafd130d27daa6f5e3beff3bfe08c9.tar.gz ghdl-313d7236a7fafd130d27daa6f5e3beff3bfe08c9.tar.bz2 ghdl-313d7236a7fafd130d27daa6f5e3beff3bfe08c9.zip |
Also consider 'not' for non-psl assert statement.
Fixes #141
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/sem_psl.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vhdl/sem_psl.adb b/src/vhdl/sem_psl.adb index bdcc35112..e537dc8a6 100644 --- a/src/vhdl/sem_psl.adb +++ b/src/vhdl/sem_psl.adb @@ -589,7 +589,7 @@ package body Sem_Psl is case Get_Kind (Expr) is when N_HDL_Expr => return True; - when N_And_Bool | N_Or_Bool => + when N_And_Bool | N_Or_Bool | N_Not_Bool => return True; when others => return False; |