target/m68k: remove useless qregs array
authorLaurent Vivier <laurent@vivier.eu>
Thu, 22 Oct 2020 20:29:59 +0000 (22:29 +0200)
committerLaurent Vivier <laurent@vivier.eu>
Sat, 12 Dec 2020 17:12:35 +0000 (18:12 +0100)
They are unused since the target has been converted to TCG.

Fixes: e1f3808e03f7 ("Convert m68k target to TCG.")
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20201022203000.1922749-2-laurent@vivier.eu>

target/m68k/cpu.h

index 521ac67cdd043775e9d5350ca62ee10ae0d1dbae..9a6f0400fcfe870ed371c4e18d2fd926daf161b7 100644 (file)
@@ -33,8 +33,6 @@
 #define OS_PACKED   6
 #define OS_UNSIZED  7
 
-#define MAX_QREGS 32
-
 #define EXCP_ACCESS         2   /* Access (MMU) error.  */
 #define EXCP_ADDRESS        3   /* Address error.  */
 #define EXCP_ILLEGAL        4   /* Illegal instruction.  */
@@ -139,8 +137,6 @@ typedef struct CPUM68KState {
     int pending_vector;
     int pending_level;
 
-    uint32_t qregs[MAX_QREGS];
-
     /* Fields up to this point are cleared by a CPU reset */
     struct {} end_reset_fields;