From: Doug Evans Date: Tue, 20 Jan 1998 10:38:29 +0000 (+0000) Subject: Regenerate. X-Git-Tag: gdb-4_18-branchpoint~3804 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d4feafa692efbc9d35029abd87275de218cb8e68;p=thirdparty%2Fbinutils-gdb.git Regenerate. --- diff --git a/sim/m32r/arch.c b/sim/m32r/arch.c index 431d500bb71..39b9b9629da 100644 --- a/sim/m32r/arch.c +++ b/sim/m32r/arch.c @@ -26,6 +26,9 @@ with this program; if not, write to the Free Software Foundation, Inc., const MACH machs[] = { { "m32r", 32, 32, & m32r_models[0], & m32r_imp_properties }, +/* start-sanitize-m32rx */ + { "m32rx", 32, 32, & m32rx_models[0], & m32rx_imp_properties }, +/* end-sanitize-m32rx */ { 0 } }; diff --git a/sim/m32r/arch.h b/sim/m32r/arch.h index 562ecaa0fac..42ccb8c0189 100644 --- a/sim/m32r/arch.h +++ b/sim/m32r/arch.h @@ -23,7 +23,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #ifndef M32R_ARCH_H #define M32R_ARCH_H -#define MAX_INSNS 128 +#define MAX_INSNS 166 #define TARGET_BIG_ENDIAN 1 @@ -32,6 +32,9 @@ with this program; if not, write to the Free Software Foundation, Inc., /* Macros to determine which cpus are supported. */ #define HAVE_CPU_M32R +/* start-sanitize-m32rx */ +#define HAVE_CPU_M32RX +/* end-sanitize-m32rx */ /* Enum declaration for mode types. */ typedef enum mode_type { @@ -48,7 +51,7 @@ typedef enum mode_type { /* Enum declaration for model types. */ typedef enum model_type { - MODEL_M32R_D, MODEL_TEST, MODEL_MAX + MODEL_M32R_D, MODEL_TEST, MODEL_M32RX, MODEL_MAX } MODEL_TYPE; #define MAX_MODELS ((int) MODEL_MAX) @@ -56,7 +59,7 @@ typedef enum model_type { /* Enum declaration for unit types. */ typedef enum unit_type { UNIT_NONE, UNIT_M32R_D_U_STORE, UNIT_M32R_D_U_LOAD, UNIT_M32R_D_U_EXEC, - UNIT_TEST_U_EXEC, UNIT_MAX + UNIT_TEST_U_EXEC, UNIT_M32RX_U_EXEC, UNIT_MAX } UNIT_TYPE; #define MAX_UNITS (1)