Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions regression/verilog/part-select/indexed-part-select5.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
KNOWNBUG
indexed-part-select5.sv
--bound 0
^EXIT=0$
^SIGNAL=0$
--
^warning: ignoring
--
This yields invalid SMT-LIB ("invalid extract application").
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For that to materialise, wouldn't also some --smt command line be required?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We do run all tests both with the flattening backend and with Z3.

14 changes: 14 additions & 0 deletions regression/verilog/part-select/indexed-part-select5.sv
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module main(input my_input);

bit [7:0] some_wire;

always @my_input begin
some_wire[0 +: 2] = 'b01;
some_wire[2 +: 2] = 'b01;
some_wire[4 +: 2] = 'b01;
some_wire[6 +: 2] = 'b01;
end

p0: assert final (some_wire == 'b01_01_01_01);

endmodule