diff options
author | Doug Evans <dje@google.com> | 1998-02-12 03:55:30 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 1998-02-12 03:55:30 +0000 |
commit | 02e565a2709e6d6c44ec834faca4a75305be0853 (patch) | |
tree | f7ab7c1af51b375478ea1277c9e4597f77b942e1 /sim/m32r/sim-main.h | |
parent | b2f9c13cb7d7834a9ffa8749161000e3b7df0708 (diff) | |
download | gdb-02e565a2709e6d6c44ec834faca4a75305be0853.zip gdb-02e565a2709e6d6c44ec834faca4a75305be0853.tar.gz gdb-02e565a2709e6d6c44ec834faca4a75305be0853.tar.bz2 |
* sim-main.h (CIA_GET,CIA_SET): Provide dummy definitions for now.
Diffstat (limited to 'sim/m32r/sim-main.h')
-rw-r--r-- | sim/m32r/sim-main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/m32r/sim-main.h b/sim/m32r/sim-main.h index 90883b3..3f1f3ef 100644 --- a/sim/m32r/sim-main.h +++ b/sim/m32r/sim-main.h @@ -16,6 +16,8 @@ typedef struct _sim_cpu SIM_CPU; /* These must be defined before sim-base.h. */ typedef SI sim_cia; +#define CIA_GET(cpu) 0 /* FIXME:(CPU_CGEN_HW (cpu)->h_pc) */ +#define CIA_SET(cpu,val) 0 /* FIXME:(CPU_CGEN_HW (cpu)->h_pc = (val)) */ /* FIXME: Shouldn't be required to define these this early. */ #define SIM_ENGINE_HALT_HOOK(SD, LAST_CPU, CIA) @@ -61,8 +63,6 @@ struct _sim_cpu { /* start-sanitize-m32rx */ #elif defined (WANT_CPU_M32RX) M32RX_CPU_DATA cpu_data; - PARALLEL_EXEC par_exec; -#define CPU_PAR_EXEC(cpu) (& (cpu)->par_exec) /* end-sanitize-m32rx */ #endif |