Commentary
This commit is contained in:
parent
a901e171b2
commit
da4323062d
|
|
@ -47,7 +47,7 @@ module t (/*AUTOARG*/
|
|||
endcase
|
||||
end
|
||||
|
||||
`ifdef NOT_YET_verilator
|
||||
`ifdef NOT_YET_VERILATOR // Unsupported
|
||||
// ambit synthesis one_hot "a, b_oh"
|
||||
// cadence one_cold "a_l, b_oc_l"
|
||||
`endif
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ module t_case_huge_sub2 (/*AUTOARG*/
|
|||
|
||||
always @(/*AS*/index) begin
|
||||
case (index[7:0])
|
||||
`ifdef verilator
|
||||
`ifdef VERILATOR // Harder test
|
||||
8'h00: begin outa = $c("0"); end // Makes whole table non-optimizable
|
||||
`else
|
||||
8'h00: begin outa = 10'h0; end
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ module Test (/*AUTOARG*/
|
|||
end
|
||||
|
||||
reg displayit;
|
||||
`ifdef verilator
|
||||
`ifdef VERILATOR // Harder test
|
||||
initial displayit = $c1("0"); // Something that won't optimize away
|
||||
`else
|
||||
initial displayit = '0;
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
`ifdef NC
|
||||
`define NO_SHORTREAL
|
||||
`endif
|
||||
`ifdef VERILATOR
|
||||
`ifdef VERILATOR // Unsupported
|
||||
`define NO_SHORTREAL
|
||||
`endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue