From fa0079ea727e512d592fff1241a82a0a2f628903 Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Tue, 28 Jan 2014 17:49:13 +0100 Subject: 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. --- gdb/ppc64-tdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/ppc64-tdep.c') diff --git a/gdb/ppc64-tdep.c b/gdb/ppc64-tdep.c index 56da928dc63..cbbbedc070c 100644 --- a/gdb/ppc64-tdep.c +++ b/gdb/ppc64-tdep.c @@ -289,7 +289,7 @@ static struct ppc_insn_pattern ppc64_standard_linkage6[] = static struct ppc_insn_pattern ppc64_standard_linkage7[] = { /* std r2, 24(r1) */ - { -1, insn_ds (62, 2, 1, 40, 0), 1 }, + { -1, insn_ds (62, 2, 1, 24, 0), 1 }, /* ld r12, (r2) */ { insn_ds (-1, -1, -1, 0, -1), insn_ds (58, 12, 2, 0, 0), 0 }, -- cgit v1.2.3-65-gdbad