File tree Expand file tree Collapse file tree 10 files changed +75
-0
lines changed
regression/verilog/expressions Expand file tree Collapse file tree 10 files changed +75
-0
lines changed Original file line number Diff line number Diff line change 1+ KNOWNBUG
2+ concatenation5.v
3+ --bound 0
4+ ^EXIT=0$
5+ ^SIGNAL=0$
6+ --
7+ ^warning: ignoring
8+ --
9+ This should be errored.
Original file line number Diff line number Diff line change 1+ module main ;
2+
3+ // {} only takes integral types
4+ wire x = {1 .1 , 1 .2 };
5+
6+ endmodule
Original file line number Diff line number Diff line change 1+ KNOWNBUG
2+ equality3.v
3+ --bound 0
4+ ^EXIT=0$
5+ ^SIGNAL=0$
6+ --
7+ ^warning: ignoring
8+ --
9+ This should be errored.
Original file line number Diff line number Diff line change 1+ module main ;
2+
3+ // === takes any type except real/shortreal
4+ wire x = 1 .1 === 1 .2 ;
5+
6+ endmodule
Original file line number Diff line number Diff line change 1+ KNOWNBUG
2+ mod2.v
3+ --bound 0
4+ ^EXIT=0$
5+ ^SIGNAL=0$
6+ --
7+ ^warning: ignoring
8+ --
9+ This should be errored.
Original file line number Diff line number Diff line change 1+ module main ;
2+
3+ // % only takes integral types
4+ wire x = 1 .1 % 1 .2 ;
5+
6+ endmodule
Original file line number Diff line number Diff line change 1+ KNOWNBUG
2+ shr2.v
3+ --bound 0
4+ ^EXIT=0$
5+ ^SIGNAL=0$
6+ --
7+ ^warning: ignoring
8+ --
9+ This should be errored.
Original file line number Diff line number Diff line change 1+ module main ;
2+
3+ // >> only takes integral types
4+ wire x = 1 .1 >> 1 .2 ;
5+
6+ endmodule
Original file line number Diff line number Diff line change 1+ KNOWNBUG
2+ wildcard_equality2.v
3+ --bound 0
4+ ^EXIT=0$
5+ ^SIGNAL=0$
6+ --
7+ ^warning: ignoring
8+ --
9+ This should be errored.
Original file line number Diff line number Diff line change 1+ module main ;
2+
3+ // ==? only takes integral types
4+ wire x = 1 .1 === 1 .2 ;
5+
6+ endmodule
You can’t perform that action at this time.
0 commit comments