diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-04-18 04:19:56 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-04-18 04:31:36 -0400 |
commit | 20bca71d82598a015de0991196e45f0b5f7ead81 (patch) | |
tree | 430360c5efe05979bc42a916dd483aae35c30eb6 /sim/common | |
parent | 7e83aa92f2d986ba60f124287a9fd1e534fbbcf8 (diff) | |
download | binutils-20bca71d82598a015de0991196e45f0b5f7ead81.zip binutils-20bca71d82598a015de0991196e45f0b5f7ead81.tar.gz binutils-20bca71d82598a015de0991196e45f0b5f7ead81.tar.bz2 |
sim: unify SIM_CPU definition
Since every target typedefs this the same way, move it to the common code.
We have to leave Blackfin behind here for now because of inter-dependencies
on types and headers: sim-base.h includes sim-model.h which needs types in
machs.h which needs types in bfim-sim.h which needs SIM_CPU.
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/ChangeLog | 4 | ||||
-rw-r--r-- | sim/common/sim-base.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index f437768..858e432 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,9 @@ 2015-04-18 Mike Frysinger <vapier@gentoo.org> + * sim-base.h (SIM_CPU): New typedef. + +2015-04-18 Mike Frysinger <vapier@gentoo.org> + * cgen-engine.h (CIA_ADDR): Delete. * sim-base.h: Update sim_cia example. [!CIA_ADDR] (sim_cia): New typedef. diff --git a/sim/common/sim-base.h b/sim/common/sim-base.h index e90e07c..21f61f4 100644 --- a/sim/common/sim-base.h +++ b/sim/common/sim-base.h @@ -72,6 +72,8 @@ typedef address_word sim_cia; #define INVALID_INSTRUCTION_ADDRESS ((address_word)0 - 1) #endif +/* TODO: Probably should just delete SIM_CPU. */ +typedef struct _sim_cpu SIM_CPU; typedef struct _sim_cpu sim_cpu; #include "sim-module.h" |