From 57524836f14b7f37c6e338ed1ca05ebea1f7f5b2 Mon Sep 17 00:00:00 2001 From: Cary R Date: Thu, 28 Dec 2023 11:13:32 -0800 Subject: [PATCH] Fix space issues --- INSTALL | 2 +- ivtest/ivltests/struct_enum_partsel.v | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index eec69c933..07207c1b9 100644 --- a/INSTALL +++ b/INSTALL @@ -29,7 +29,7 @@ it or regenerate `configure` using a newer version of `autoconf`. The simplest way to compile this package is: 1. `cd` to the directory containing the package's source code. - + 2. Run `sh autoconf.sh`, if building from source (and not a release). If you're building from a release, skip this step. diff --git a/ivtest/ivltests/struct_enum_partsel.v b/ivtest/ivltests/struct_enum_partsel.v index b0aac672b..a2afe69a9 100644 --- a/ivtest/ivltests/struct_enum_partsel.v +++ b/ivtest/ivltests/struct_enum_partsel.v @@ -3,7 +3,7 @@ module main; typedef enum logic [2:0] { ENUM_VAL = 3'b110 } enumtype; - + typedef struct packed { enumtype e; } structtype;