From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from vmicros1.altlinux.org (vmicros1.altlinux.org [194.107.17.57]) by sourceware.org (Postfix) with ESMTP id 1886C385803B for ; Sat, 12 Dec 2020 16:50:21 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 1886C385803B Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=altlinux.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=ldv@altlinux.org Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id 9AFD272C8B1 for ; Sat, 12 Dec 2020 19:50:20 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id 8C4287CC8A3; Sat, 12 Dec 2020 19:50:20 +0300 (MSK) Date: Sat, 12 Dec 2020 19:50:20 +0300 From: "Dmitry V. Levin" To: elfutils-devel@sourceware.org Subject: [PATCH 02/12] backends: fix spelling typos in comments Message-ID: <20201212165020.GB503@altlinux.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201212164901.GA474@altlinux.org> X-Spam-Status: No, score=-12.2 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: elfutils-devel@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Elfutils-devel mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Dec 2020 16:50:22 -0000 adress -> address sigle -> single Signed-off-by: Dmitry V. Levin --- backends/ChangeLog | 6 ++++++ backends/aarch64_retval.c | 2 +- backends/ppc_cfi.c | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/backends/ChangeLog b/backends/ChangeLog index e88dedf9..f22cd57f 100644 --- a/backends/ChangeLog +++ b/backends/ChangeLog @@ -1,3 +1,9 @@ +2020-12-12 Dmitry V. Levin + + * aarch64_retval.c (aarch64_return_value_location): Fix spelling typo + in comment. + * ppc_cfi.c (ppc_abi_cfi): Likewise. + 2020-11-17 Mark Wielard * x86_64_symbol.c (x86_64_check_reloc_target_type): New function. diff --git a/backends/aarch64_retval.c b/backends/aarch64_retval.c index 1308340b..72d4e8a3 100644 --- a/backends/aarch64_retval.c +++ b/backends/aarch64_retval.c @@ -332,7 +332,7 @@ aarch64_return_value_location (Dwarf_Die *functypedie, const Dwarf_Op **locp) switch (size) { case 2: /* half */ - case 4: /* sigle */ + case 4: /* single */ case 8: /* double */ case 16: /* quad */ return pass_in_simd (locp); diff --git a/backends/ppc_cfi.c b/backends/ppc_cfi.c index 55169aef..b4700360 100644 --- a/backends/ppc_cfi.c +++ b/backends/ppc_cfi.c @@ -42,7 +42,7 @@ ppc_abi_cfi (Ebl *ebl __attribute__ ((unused)), Dwarf_CIE *abi_info) { /* This instruction is provided in every CIE. It is not repeated here: DW_CFA_def_cfa, ULEB128_7 (1), ULEB128_7 (0) */ - /* r1 is assumed to be restored from cfa adress, + /* r1 is assumed to be restored from cfa address, r1 acts as a stack frame pointer. */ DW_CFA_val_offset, ULEB128_7 (1), ULEB128_7 (0), /* lr is not callee-saved but it needs to be preserved as it is pre-set -- ldv