ppTests Fix IEEE18002017_macro_without_defaults

This commit is contained in:
damc 2022-07-21 22:24:19 +02:00
parent d1e7f32d05
commit 026e606136
2 changed files with 5 additions and 9 deletions

View File

@ -5,11 +5,9 @@
`define D(x,y) initial $display("start", x , y, "end");
module m;
initial begin
`D( "msg1" , "msg2" )
`D( " msg1", )
`D(, "msg2 ")
`D(,)
`D( , )
end
endmodule

View File

@ -5,11 +5,9 @@
`define D(x,y) initial $display("start", x , y, "end");
module m;
initial begin
$display("start", "msg1" , "msg2", "end");
$display("start", " msg1" , , "end");
$display("start", , "msg2 ", "end");
$display("start", , , "end");
$display("start", , , "end");
end
initial $display("start", "msg1" , "msg2", "end");
initial $display("start", " msg1" , , "end");
initial $display("start", , "msg2 ", "end");
initial $display("start", , , "end");
initial $display("start", , , "end");
endmodule