From c20a6f4396ca7445657f876ed8c034bd1e0373bc Mon Sep 17 00:00:00 2001 From: Greg Davill Date: Sat, 11 Apr 2026 16:03:13 +0930 Subject: [PATCH] Fix whitespace error --- test_regress/t/t_array_pattern_concat.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_regress/t/t_array_pattern_concat.v b/test_regress/t/t_array_pattern_concat.v index 40711dbcf..2c7f4900f 100644 --- a/test_regress/t/t_array_pattern_concat.v +++ b/test_regress/t/t_array_pattern_concat.v @@ -63,7 +63,7 @@ module t ( /*AUTOARG*/); localparam logic [31:0] KEY_ARR_A[4] = '{0: BASE_ADDRS[0:1], 2: 32'hF2, 3: 32'hF3}; localparam logic [31:0] KEY_ARR_B[4] = '{2: ALL_ADDRS[1:2], default: 32'h00}; - // Keyed pattern where values are indexed from another array param — + // Keyed pattern where values are indexed from another array param // the key determines position, not the source array's element count. localparam logic [31:0] KEYED_FROM_ARR[3] = '{ 0: BASE_ADDRS[2], 1: BASE_ADDRS[0], 2: BASE_ADDRS[1]