Merge pull request #3978 from jix/fix-sva-test

Fix sva_value_change_changed test for updated verific
This commit is contained in:
Miodrag Milanović 2023-10-03 12:19:10 +02:00 committed by GitHub
commit 493685b7d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -8,9 +8,11 @@ module top (
$changed(b)
);
wire x = 'x;
`ifndef FAIL
assume property (
b !== 'x ##1 $changed(b)
b !== x ##1 $changed(b)
);
`endif