From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7897) id 6699F3858D35; Tue, 22 Nov 2022 18:19:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6699F3858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1669141157; bh=rVLsGPqYe5JVjjGdqa9oLbexnlXOfLCkcJ4qYdPSzL0=; h=From:To:Subject:Date:From; b=qDIRkUyaPKKVzcdm8IEoIu3GMs1XoxPf2UFMoVpNEVGewi+ec8wzyvFXrAxcQIexF 6pnKcSxs0d1oqFN8IcgKaRuYcsphm9HUz2qruMpA7KWI7rdS62rTfbNm9nT0Tb1RCy 1GGifrvWMrhRuYbYmg+mSKbvTdb1vfycgYTCkEZw= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Torbjorn Svensson To: gdb-cvs@sourceware.org Subject: [binutils-gdb] gdb/arm: Fix obvious typo in b0b23e06c3a X-Act-Checkin: binutils-gdb X-Git-Author: =?utf-8?q?Torbj=C3=B6rn_SVENSSON?= X-Git-Refname: refs/heads/master X-Git-Oldrev: d7229d6a56118234fc66d84e3f1fe9c0d4592fbf X-Git-Newrev: f3f7ecc942f3844559142b933aa40b5ef75e3d5e Message-Id: <20221122181917.6699F3858D35@sourceware.org> Date: Tue, 22 Nov 2022 18:19:17 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3Df3f7ecc942f3= 844559142b933aa40b5ef75e3d5e commit f3f7ecc942f3844559142b933aa40b5ef75e3d5e Author: Torbj=C3=B6rn SVENSSON Date: Tue Nov 22 18:06:33 2022 +0100 gdb/arm: Fix obvious typo in b0b23e06c3a =20 As part of the rebase of the patch, I managed to loose the local changes I had for the comments from Tomas in https://sourceware.org/pipermail/gdb-patches/2022-November/193413.html This patch corrects the obvious two typos. =20 Signed-off-by: Torbj=C3=B6rn SVENSSON Diff: --- gdb/arm-tdep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index f748df83e56..a839f957440 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -401,9 +401,9 @@ arm_cache_init (struct arm_prologue_cache *cache, frame= _info_ptr frame) else if (tdep->is_m) { cache->msp_s - =3D get_frame_register_unsigned (frame, tdep->m_profile_msp_s_regnum); + =3D get_frame_register_unsigned (frame, tdep->m_profile_msp_regnum); cache->psp_s - =3D get_frame_register_unsigned (frame, tdep->m_profile_psp_s_regnum); + =3D get_frame_register_unsigned (frame, tdep->m_profile_psp_regnum); =20 /* Identify what sp is alias for (msp or psp). */ if (cache->msp_s =3D=3D cache->sp)