From patchwork Tue Feb 28 11:28:16 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Aktemur, Tankut Baris" X-Patchwork-Id: 65750 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 6084F384843A for ; Tue, 28 Feb 2023 11:31:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6084F384843A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1677583887; bh=NbBhZllRbCwrUNnNKwlBfg9nLJEZb9B+IZucbz8NXc8=; h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=lqsxvnrCOUlRv1NZhc7sbfhe59WD7tOIH57zkvmgNK6K3FL184lIzpO2dgP8y3pnN /Nz0r0lg/AzH717kJnD3xkaxyz43S5XHDpUIxxeSaIXOnnvky2UkOweHTM4RY5JoF4 uZXLPgRzTtsrM0iZ72IcaxIf62+L04DbMjJSgd1s= X-Original-To: gdb-patches@sourceware.org Delivered-To: gdb-patches@sourceware.org Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by sourceware.org (Postfix) with ESMTPS id 1405A3850206 for ; Tue, 28 Feb 2023 11:30:39 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 1405A3850206 X-IronPort-AV: E=McAfee;i="6500,9779,10634"; a="313785130" X-IronPort-AV: E=Sophos;i="5.98,221,1673942400"; d="scan'208";a="313785130" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Feb 2023 03:30:39 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10634"; a="623992189" X-IronPort-AV: E=Sophos;i="5.98,221,1673942400"; d="scan'208";a="623992189" Received: from ultl2604.iul.intel.com (HELO localhost) ([172.28.48.47]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Feb 2023 03:30:38 -0800 To: gdb-patches@sourceware.org Subject: [PATCH 18/26] gdbsupport: fix a typo in a comment in common-regcache.h Date: Tue, 28 Feb 2023 12:28:16 +0100 Message-Id: X-Mailer: git-send-email 2.25.1 In-Reply-To: References: MIME-Version: 1.0 X-Spam-Status: No, score=-10.6 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, SPF_HELO_PASS, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Tankut Baris Aktemur via Gdb-patches From: "Aktemur, Tankut Baris" Reply-To: Tankut Baris Aktemur Errors-To: gdb-patches-bounces+patchwork=sourceware.org@sourceware.org Sender: "Gdb-patches" Fix a typo. --- gdbsupport/common-regcache.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gdbsupport/common-regcache.h b/gdbsupport/common-regcache.h index e462f532407..bf14610f98f 100644 --- a/gdbsupport/common-regcache.h +++ b/gdbsupport/common-regcache.h @@ -33,10 +33,10 @@ enum register_status : signed char /* The register value is unavailable. E.g., we're inspecting a traceframe, and this register wasn't collected. Note that this - is different a different "unavailable" from saying the register - does not exist in the target's architecture --- in that case, - the target should have given us a target description that does - not include the register in the first place. */ + "unavailable" is different from saying the register does not + exist in the target's architecture --- in that case, the target + should have given us a target description that does not include + the register in the first place. */ REG_UNAVAILABLE = -1 };