From: Ulrich Weigand Date: Tue, 2 Oct 2007 19:25:52 +0000 (+0000) Subject: * s390-tdep.c (s390_regset_from_core_section): Allow excess section X-Git-Tag: sid-snapshot-20071101~467 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e31dcd201e98f9a12d0cc5d77da608f9b4635cd6;p=external%2Fbinutils.git * s390-tdep.c (s390_regset_from_core_section): Allow excess section size to enable bi-arch generate-core-file support. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4eb0437..f86cadd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2007-10-02 Ulrich Weigand + + * 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 * spu-tdep.c (info_spu_signal_command): Fix output for SPU signal. diff --git a/gdb/s390-tdep.c b/gdb/s390-tdep.c index a5b0de1..9deeabc 100644 --- a/gdb/s390-tdep.c +++ b/gdb/s390-tdep.c @@ -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;