Skip to content

Commit 9be7670

Browse files
authored
Merge pull request #1274 from diffblue/assignment-with-function-call1-fix
Verilog: fix assignment-with-function-call1.sv test
2 parents dc46b78 + 5c3a471 commit 9be7670

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
KNOWNBUG
1+
CORE
22
assignment-with-function-call1.sv
3-
--bound 1
3+
--bound 0
4+
^\[top\.assert\.1\] .* PROVED .*$
5+
^\[top\.assert\.2\] .* PROVED .*$
6+
^\[top\.assert\.3\] .* PROVED .*$
47
^EXIT=0$
58
^SIGNAL=0$
6-
^\[main.property.property1\] .* SUCCESS$
7-
^\[main.property.property2\] .* SUCCESS$
8-
^\[main.property.property3\] .* SUCCESS$
99
--
1010
^warning: ignoring

regression/verilog/assignments/assignment-with-function-call1.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module top(input [7:0] a, input [7:0] b);
1111
sum_1_2 = fn(1, 2),
1212
sum_2_3 = fn(2, 3);
1313

14-
assert property (sum_a_b==a+b);
14+
assert property (sum_a_b==a[2:0]+b[2:0]);
1515

1616
assert property (sum_1_2==3);
1717

0 commit comments

Comments
 (0)