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 603A03858D28 for ; Mon, 7 Aug 2023 21:13:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 603A03858D28 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=1691442818; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=lCtBKvJtmMTgZWaD5VFy2rw1rsHKRexwoMdvQBeKeUA=; b=GMiydL2j3bYnXYAlEbClCjlZbcgIYdQKYpsQakQNKdyX7WD/8I54S70qE0llqDvdPYmoce X3AymLbRGDD91FDJSVttH8/I+ozlfmQlwOz96C/0qj1bLXmke++Y9eV9H8ASS6Axhr6DqT SdQoNnX6dXEF7S/0w84LWkioSLo6PFg= Received: from mimecast-mx02.redhat.com (66.187.233.73 [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-505-XX5LKEDSPTKqY8BMabGBtQ-1; Mon, 07 Aug 2023 17:13:36 -0400 X-MC-Unique: XX5LKEDSPTKqY8BMabGBtQ-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 56AA0380406B; Mon, 7 Aug 2023 21:13:36 +0000 (UTC) Received: from localhost (unknown [10.42.28.127]) by smtp.corp.redhat.com (Postfix) with ESMTP id 1E40740C2076; Mon, 7 Aug 2023 21:13:36 +0000 (UTC) From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [committed] i386: Fix grammar typo in diagnostic Date: Mon, 7 Aug 2023 22:12:35 +0100 Message-ID: <20230807211335.701619-1-jwakely@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.1 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,RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,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: Committed as obvious. Less obvious (to me) is whether it's correct to say "GCC V13" here. I don't think we refer to a version that way anywhere else, do we? Would "since GCC 13.1.0" be better? -- >8 -- gcc/ChangeLog: * config/i386/i386.cc (ix86_invalid_conversion): Fix grammar. --- gcc/config/i386/i386.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/i386/i386.cc b/gcc/config/i386/i386.cc index 50860050049..5d57726e22c 100644 --- a/gcc/config/i386/i386.cc +++ b/gcc/config/i386/i386.cc @@ -22890,7 +22890,7 @@ ix86_invalid_conversion (const_tree fromtype, const_tree totype) warning (0, "%<__bfloat16%> is redefined from typedef % " "to real %<__bf16%> since GCC V13, be careful of " "implicit conversion between %<__bf16%> and %; " - "a explicit bitcast may be needed here"); + "an explicit bitcast may be needed here"); } /* Conversion allowed. */ -- 2.41.0