diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-08-20 04:54:29 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-08-20 04:54:29 +0200 |
commit | 47b4650272ce425223da826b0de5bb7286036168 (patch) | |
tree | 3778ae11ddea6e8f5bc69909a724f11029e35573 /src/synth/synth-stmts.adb | |
parent | b77eb1a27fa6838c7194a44f8d872005d08e6ac7 (diff) | |
download | ghdl-47b4650272ce425223da826b0de5bb7286036168.tar.gz ghdl-47b4650272ce425223da826b0de5bb7286036168.tar.bz2 ghdl-47b4650272ce425223da826b0de5bb7286036168.zip |
vhdl: handle assume in verification units.
Diffstat (limited to 'src/synth/synth-stmts.adb')
-rw-r--r-- | src/synth/synth-stmts.adb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/synth/synth-stmts.adb b/src/synth/synth-stmts.adb index 339c0a823..0d2c8bf9f 100644 --- a/src/synth/synth-stmts.adb +++ b/src/synth/synth-stmts.adb @@ -1652,6 +1652,8 @@ package body Synth.Stmts is null; when Iir_Kind_Psl_Assert_Directive => Synth_Psl_Assert_Directive (Syn_Inst, Item); + when Iir_Kind_Psl_Assume_Directive => + Synth_Psl_Assume_Directive (Syn_Inst, Item); when others => Error_Kind ("synth_verification_unit", Item); end case; |