diff options
author | Markus Deuling <deuling@de.ibm.com> | 2007-11-16 04:56:45 +0000 |
---|---|---|
committer | Markus Deuling <deuling@de.ibm.com> | 2007-11-16 04:56:45 +0000 |
commit | 64a3914f1d067cda3ec88333e5312afe133d5d36 (patch) | |
tree | a182e9030a0bb5ff6636b988e9df4360e3a8f84f /gdb/arch-utils.h | |
parent | 40a6adc1f847a722db47fa6dc14e4664d59f07b6 (diff) | |
download | gdb-64a3914f1d067cda3ec88333e5312afe133d5d36.zip gdb-64a3914f1d067cda3ec88333e5312afe133d5d36.tar.gz gdb-64a3914f1d067cda3ec88333e5312afe133d5d36.tar.bz2 |
2007-11-16 Markus Deuling <deuling@de.ibm.com>
* gdbarch.sh (cannot_fetch_register, cannot_store_register): Add gdbarch
as parameter.
* gdbarch.{c,h}: Regenerate.
* alpha-tdep.c (alpha_cannot_fetch_register)
(alpha_cannot_store_register): Add gdbarch as parameter. Replace
current_gdbarch by gdbarch.
* cris-tdep.c (cris_cannot_fetch_register, cris_cannot_store_register)
(crisv32_cannot_fetch_register)
(crisv32_cannot_store_register): Likewise.
* arch-utils.c (cannot_register_not): Likewise.
* arch-utils.h (cannot_register_not): Likewise.
* hppa-tdep.c (hppa32_cannot_store_register)
(hppa32_cannot_store_register, hppa64_cannot_store_register)
(hppa64_cannot_fetch_register): Likewise.
* mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register)
(mipsnbsd_cannot_store_register): Likewise.
Diffstat (limited to 'gdb/arch-utils.h')
-rw-r--r-- | gdb/arch-utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/arch-utils.h b/gdb/arch-utils.h index ee04ad5..8d87fbf 100644 --- a/gdb/arch-utils.h +++ b/gdb/arch-utils.h @@ -54,7 +54,7 @@ void default_coff_make_msymbol_special (int val, struct minimal_symbol *msym); /* Version of cannot_fetch_register() / cannot_store_register() that always fails. */ -int cannot_register_not (int regnum); +int cannot_register_not (struct gdbarch *gdbarch, int regnum); /* Legacy version of target_virtual_frame_pointer(). Assumes that there is an gdbarch_deprecated_fp_regnum and that it is the same, cooked or |