From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id 2AAB93858D3C for ; Fri, 7 Oct 2022 11:21:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2AAB93858D3C Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1665141714; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=G9BA6QmaWuQl2jgQZhASHZKW4MKEwNSfd7Tya4YOqSQ=; b=WarC/rNW0aGfydSG3U7dzDYAAfX/SOmSimHKFzXybCm3BissR3sIfYoQibABcGRjhWHU6e 3cjYidDo6UZAGtFDGh98y41PjAxfVP8n6ChqVBfmmDoJXu/M4Xjy2/3RzW5gUly01y/tfU B7a3CRnaUGp7abZrDIEYDD360KAg+qY= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-251-OSeGTRH2O2i1LwauxwZVkA-1; Fri, 07 Oct 2022 07:21:53 -0400 X-MC-Unique: OSeGTRH2O2i1LwauxwZVkA-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 01DF580C8C1 for ; Fri, 7 Oct 2022 11:21:53 +0000 (UTC) Received: from localhost (unknown [10.33.36.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id B8895728FC; Fri, 7 Oct 2022 11:21:52 +0000 (UTC) Date: Fri, 7 Oct 2022 12:21:51 +0100 From: Jonathan Wakely To: Jakub Jelinek Cc: gcc-patches@gcc.gnu.org Subject: Re: [committed] Fix comment typos Message-ID: References: MIME-Version: 1.0 In-Reply-To: X-Clacks-Overhead: GNU Terry Pratchett X-Scanned-By: MIMEDefang 3.1 on 10.11.54.5 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: multipart/mixed; boundary="DKeLKYRP88seOVsr" Content-Disposition: inline X-Spam-Status: No, score=-12.0 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,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 List-Id: --DKeLKYRP88seOVsr Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline On 07/10/22 09:11 +0200, Jakub Jelinek wrote: >--- gcc/ipa-prop.h.jj 2022-05-25 11:07:29.516188277 +0200 >+++ gcc/ipa-prop.h 2022-10-06 16:12:52.157055672 +0200 >@@ -78,7 +78,7 @@ struct ipa_cst_ref_desc; > /* Structure holding data required to describe a constant jump function. */ > struct GTY(()) ipa_constant_data > { >- /* THe value of the constant. */ >+ /* The value of the constant. */ > tree value; > /* Pointer to the structure that describes the reference. */ > struct ipa_cst_ref_desc GTY((skip)) *rdesc; >--- gcc/value-range.cc.jj 2022-10-06 08:55:02.668291942 +0200 >+++ gcc/value-range.cc 2022-10-06 16:12:17.161531334 +0200 >@@ -2508,7 +2508,7 @@ irange::irange_contains_p (const irange > // Otherwise, check if this's pair occurs before R's. > if (wi::lt_p (wi::to_wide (u), wi::to_wide (rl), sign)) > { >- // THere's still at leats one pair of R left. >+ // There's still at leats one pair of R left. There's still at least one typo here ;-) I'll push the attached as obvious. --DKeLKYRP88seOVsr Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch.txt" commit 5c868666ce2014acf64d817dc31031deab1ecc93 Author: Jonathan Wakely Date: Fri Oct 7 12:20:36 2022 gcc: Fix comment typo gcc/ChangeLog: * value-range.cc (irange::irange_contains_p): Fix comment typo. diff --git a/gcc/value-range.cc b/gcc/value-range.cc index 16105f87678..a14f9bc4394 100644 --- a/gcc/value-range.cc +++ b/gcc/value-range.cc @@ -2509,7 +2509,7 @@ irange::irange_contains_p (const irange &r) const // Otherwise, check if this's pair occurs before R's. if (wi::lt_p (wi::to_wide (u), wi::to_wide (rl), sign)) { - // There's still at leats one pair of R left. + // There's still at least one pair of R left. if (++i >= num_pairs ()) return false; l = m_base[i * 2]; --DKeLKYRP88seOVsr--