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 223A6385AC3B for ; Mon, 12 Sep 2022 09:51:07 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 223A6385AC3B 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=1662976266; 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=ZrY1r9+vfDxKGIMDZ9bIecXIeGwsbZK2PZeundrcoik=; b=YxOdVUuQtOROazwRF4HTxMfONMXclYQKu5Qe/MK29iniyoi5HY4Bv2Jj5f/jZCBzov/Mfx CvT5zdd8/oQzKFaDt8T9UBDQc2inR6xQSXJAhGVURdtK/wWUsi2EiNwvdwDd0ugVenuhTk QXLQHqI9GuJO8qmDbmgWBe1WglfEO1A= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [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-417-BqMTkqyJOSax2-W_AU-YnA-1; Mon, 12 Sep 2022 05:51:05 -0400 X-MC-Unique: BqMTkqyJOSax2-W_AU-YnA-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 4AEAF38005C5 for ; Mon, 12 Sep 2022 09:51:05 +0000 (UTC) Received: from localhost (unknown [10.33.36.33]) by smtp.corp.redhat.com (Postfix) with ESMTP id 148BF40C2065 for ; Mon, 12 Sep 2022 09:51:04 +0000 (UTC) From: Jonathan Wakely To: gcc-patches@gcc.gnu.org Subject: [committed] doc: Fix typo in documentation of __float128 suffix Date: Mon, 12 Sep 2022 10:51:04 +0100 Message-Id: <20220912095104.3559952-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.8 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_LOW,SPF_HELO_NONE,SPF_NONE,TXREP,T_SCC_BODY_TEXT_LINE 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: This typo has gone unnoticed for 15 years. I had to check whether it was supposed to say __float128 or _Float128, but based on the commit that added it, the answer was obviously __float128. Committed as obvious. -- >8 -- gcc/ChangeLog: * doc/extend.texi (Floating Types): Fix "_float128" typo. --- gcc/doc/extend.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index be3ea890c47..a5afb467d23 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -1109,7 +1109,7 @@ add, subtract, multiply, divide; unary arithmetic operators; relational operators; equality operators; and conversions to and from integer and other floating types. Use a suffix @samp{w} or @samp{W} in a literal constant of type @code{__float80} or type -@code{__ibm128}. Use a suffix @samp{q} or @samp{Q} for @code{_float128}. +@code{__ibm128}. Use a suffix @samp{q} or @samp{Q} for @code{__float128}. In order to use @code{_Float128}, @code{__float128}, and @code{__ibm128} on PowerPC Linux systems, you must use the @option{-mfloat128} option. It is -- 2.37.3