diff --git a/test_regress/t/t_func_io_order.v b/test_regress/t/t_func_io_order.v index 4c03675b0..c7b90d5c5 100644 --- a/test_regress/t/t_func_io_order.v +++ b/test_regress/t/t_func_io_order.v @@ -31,7 +31,7 @@ module t(/*AUTOARG*/ // Test loop always @ (posedge clk) begin `ifdef TEST_VERBOSE - $write("[%0t] cyc==%0d crc=%x result=%x\n", $time, cyc, crc); + $write("[%0t] cyc==%0d crc=%x\n", $time, cyc, crc); `endif cyc <= cyc + 1; crc <= {crc[62:0], crc[63] ^ crc[2] ^ crc[0]};