* s390-tdep.c (s390_regset_from_core_section): Allow excess section
size to enable bi-arch generate-core-file support.
This commit is contained in:
parent
b94c4f7d5f
commit
e31dcd201e
@ -1,3 +1,8 @@
|
||||
2007-10-02 Ulrich Weigand <uweigand@de.ibm.com>
|
||||
|
||||
* s390-tdep.c (s390_regset_from_core_section): Allow excess section
|
||||
size to enable bi-arch generate-core-file support.
|
||||
|
||||
2007-10-02 Markus Deuling <deuling@de.ibm.com>
|
||||
|
||||
* spu-tdep.c (info_spu_signal_command): Fix output for SPU signal.
|
||||
|
@ -425,10 +425,10 @@ s390_regset_from_core_section (struct gdbarch *gdbarch,
|
||||
{
|
||||
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
||||
|
||||
if (strcmp (sect_name, ".reg") == 0 && sect_size == tdep->sizeof_gregset)
|
||||
if (strcmp (sect_name, ".reg") == 0 && sect_size >= tdep->sizeof_gregset)
|
||||
return tdep->gregset;
|
||||
|
||||
if (strcmp (sect_name, ".reg2") == 0 && sect_size == tdep->sizeof_fpregset)
|
||||
if (strcmp (sect_name, ".reg2") == 0 && sect_size >= tdep->sizeof_fpregset)
|
||||
return tdep->fpregset;
|
||||
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user