Fix typo in ppc64_standard_linkage7
The ppc64_standard_linkage7 pattern added by Alan's recent patch: https://sourceware.org/ml/gdb-patches/2013-11/msg00274.html contains a typo: the ELFv2 TOC slot offset is 24, not 40. This was correct in the comment, but not the actual code. ChangeLog: * ppc64-tdep.c (ppc64_standard_linkage7): Fix typo.
This commit is contained in:
parent
0a9c7b2bf1
commit
fa0079ea72
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2014-01-28 Ulrich Weigand <uweigand@de.ibm.com>
|
||||
|
||||
* ppc64-tdep.c (ppc64_standard_linkage7): Fix typo.
|
||||
|
||||
2014-01-28 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* ada-lang.c (maint_set_ada_cmdlist, maint_show_ada_cmdlist):
|
||||
|
|
|
@ -289,7 +289,7 @@ static struct ppc_insn_pattern ppc64_standard_linkage6[] =
|
|||
static struct ppc_insn_pattern ppc64_standard_linkage7[] =
|
||||
{
|
||||
/* std r2, 24(r1) <optional> */
|
||||
{ -1, insn_ds (62, 2, 1, 40, 0), 1 },
|
||||
{ -1, insn_ds (62, 2, 1, 24, 0), 1 },
|
||||
|
||||
/* ld r12, <any>(r2) */
|
||||
{ insn_ds (-1, -1, -1, 0, -1), insn_ds (58, 12, 2, 0, 0), 0 },
|
||||
|
|
Loading…
Reference in a new issue