From 6dd4ff021fb82738017c8dec4941a673e2132e4c Mon Sep 17 00:00:00 2001 From: Todd Strader Date: Fri, 27 Mar 2020 16:00:02 -0400 Subject: [PATCH] Test fix --- test_regress/t/t_type_comparison.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_regress/t/t_type_comparison.v b/test_regress/t/t_type_comparison.v index 51a4cd7e3..5737efc75 100644 --- a/test_regress/t/t_type_comparison.v +++ b/test_regress/t/t_type_comparison.v @@ -79,7 +79,7 @@ module t(); typedef byte MEM_BYTES [256]; typedef bit signed [7:0] MY_MEM_BYTES [256]; // MY_MEM_BYTES matches // MEM_BYTES - typedef byte [255:0] MEM_BYTES_PACKED; + typedef bit signed [7:0] [255:0] MEM_BYTES_PACKED; typedef bit signed [7:0] [255:0] MY_MEM_BYTES_PACKED; typedef logic [1:0] [3:0] NIBBLES; typedef logic [7:0] MY_BYTE; // MY_BYTE and NIBBLES are not matching types