diff options
author | cvs2svn <> | 2003-05-09 11:36:10 +0000 |
---|---|---|
committer | cvs2svn <> | 2003-05-09 11:36:10 +0000 |
commit | 78a97d37bbe1abae26cc68ad87c93e80a69b08df (patch) | |
tree | a513d2c34ad82b285d4f12e65c34082324daec7c /include/gdb | |
parent | 7133c258c527e353cd426ac59f258130ffbe80bd (diff) | |
download | cygnal-78a97d37bbe1abae26cc68ad87c93e80a69b08df.tar.gz cygnal-78a97d37bbe1abae26cc68ad87c93e80a69b08df.tar.bz2 cygnal-78a97d37bbe1abae26cc68ad87c93e80a69b08df.zip |
This commit was manufactured by cvs2svn to create branch 'jimb-jimb-ppc64-linux-20030509-branchpoint
ppc64-linux-20030509-branch'.
Sprout from binutils-2_14-branch 2003-04-24 12:36:09 UTC cvs2svn 'This commit was manufactured by cvs2svn to create branch 'binutils-'
Cherrypick from master 2003-05-09 11:36:09 UTC Alan Modra <modra@gmail.com> ' * xtensa-isa-internal.h (xtensa_isa_module_struct): Remove const on':
ChangeLog
MAINTAINERS
Makefile.in
Makefile.tpl
config-ml.in
djunpack.bat
include/ChangeLog
include/bfdlink.h
include/gdb/ChangeLog
include/gdb/sim-d10v.h
include/hashtab.h
include/xtensa-isa-internal.h
src-release
Diffstat (limited to 'include/gdb')
-rw-r--r-- | include/gdb/ChangeLog | 6 | ||||
-rw-r--r-- | include/gdb/sim-d10v.h | 11 |
2 files changed, 13 insertions, 4 deletions
diff --git a/include/gdb/ChangeLog b/include/gdb/ChangeLog index 9a216a0f3..77a8551a4 100644 --- a/include/gdb/ChangeLog +++ b/include/gdb/ChangeLog @@ -1,3 +1,9 @@ +2003-05-07 Andrew Cagney <cagney@redhat.com> + + * sim-d10v.h (sim_d10v_translate_addr): Add regcache parameter. + (sim_d10v_translate_imap_addr): Add regcache parameter. + (sim_d10v_translate_dmap_addr): Ditto. + 2003-03-27 Nick Clifton <nickc@redhat.com> * sim-arm.h (sim_arm_regs): Add iWMMXt registers. diff --git a/include/gdb/sim-d10v.h b/include/gdb/sim-d10v.h index f153a4194..8294b1485 100644 --- a/include/gdb/sim-d10v.h +++ b/include/gdb/sim-d10v.h @@ -58,20 +58,23 @@ extern unsigned long sim_d10v_translate_dmap_addr (unsigned long offset, int nr_bytes, unsigned long *phys, - unsigned long (*dmap_register) (int reg_nr)); + void *regcache, + unsigned long (*dmap_register) (void *regcache, int reg_nr)); extern unsigned long sim_d10v_translate_imap_addr (unsigned long offset, int nr_bytes, unsigned long *phys, - unsigned long (*imap_register) (int reg_nr)); + void *regcache, + unsigned long (*imap_register) (void *regcache, int reg_nr)); extern unsigned long sim_d10v_translate_addr (unsigned long vaddr, int nr_bytes, unsigned long *phys, - unsigned long (*dmap_register) (int reg_nr), - unsigned long (*imap_register) (int reg_nr)); + void *regcache, + unsigned long (*dmap_register) (void *regcache, int reg_nr), + unsigned long (*imap_register) (void *regcache, int reg_nr)); /* The simulator makes use of the following register information. */ |