File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
regression/verilog/expressions Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ wildcard_equality1.sv
9
9
^\[main\.property06\] always 2'b10 ==\? 2'b0x === 0: PROVED .*$
10
10
^\[main\.property07\] always 2'b00 !=\? 2'b0x === 0: PROVED .*$
11
11
^\[main\.property08\] always 2'b10 !=\? 2'b0x === 1: PROVED .*$
12
- ^\[main\.property09\] always 2'b11 ==\? 2'b11 === 0: REFUTED $
12
+ ^\[main\.property09\] always 1'sb1 ==\? 2'b11 === 0: PROVED .* $
13
13
^\[main\.property10\] always 2'sb11 ==\? 2'sb11 === 1: PROVED .*$
14
- ^EXIT=10 $
14
+ ^EXIT=0 $
15
15
^SIGNAL=0$
16
16
--
17
17
^warning: ignoring
Original file line number Diff line number Diff line change @@ -3262,10 +3262,7 @@ exprt verilog_typecheck_exprt::convert_binary_expr(binary_exprt expr)
3262
3262
expr.id () == ID_verilog_wildcard_inequality)
3263
3263
{
3264
3264
// ==? and !=?
3265
- Forall_operands (it, expr)
3266
- convert_expr (*it);
3267
-
3268
- tc_binary_expr (expr);
3265
+ convert_relation (expr);
3269
3266
3270
3267
expr.type () = verilog_unsignedbv_typet (1 );
3271
3268
You can’t perform that action at this time.
0 commit comments