diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-03-27 11:42:16 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-03-27 11:42:16 +0000 |
commit | d8f5304972cfaecc0c5bdbd519f7e7c2518b0ef4 (patch) | |
tree | 0bdae513ad8f63f19134cd0c6b868b7ddcec847c /sim/common/sim-base.h | |
parent | bd85beb90c3c162c4e93bc4746c90f31005ea589 (diff) | |
download | gdb-d8f5304972cfaecc0c5bdbd519f7e7c2518b0ef4.zip gdb-d8f5304972cfaecc0c5bdbd519f7e7c2518b0ef4.tar.gz gdb-d8f5304972cfaecc0c5bdbd519f7e7c2518b0ef4.tar.bz2 |
Do top level sim-hw module for device tree.
Add to aclocal.m4, update all configure files.
Diffstat (limited to 'sim/common/sim-base.h')
-rw-r--r-- | sim/common/sim-base.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sim/common/sim-base.h b/sim/common/sim-base.h index 1c395df..c8c6a5e 100644 --- a/sim/common/sim-base.h +++ b/sim/common/sim-base.h @@ -230,6 +230,13 @@ typedef struct { struct sim_breakpoint *breakpoints; #define STATE_BREAKPOINTS(sd) ((sd)->base.breakpoints) + /* start-sanitize-am30 */ +#if WITH_HW + struct sim_hw *hw; +#define STATE_HW(sd) ((sd)->base.hw) +#endif + + /* end-sanitize-am30 */ /* Marker for those wanting to do sanity checks. This should remain the last member of this struct to help catch miscompilation errors. */ |