From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id D93DD38515F9; Mon, 12 Sep 2022 09:48:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D93DD38515F9 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1662976089; bh=aBF+prpWPoRV3oU2yIeJnTbe058lGRk6l7p1abI5804=; h=From:To:Subject:Date:From; b=i/myDrME/mQ9m8dpOoRAtZAohOA5mnJvGkFfWfo7nmNqywxphE6m1QqW9vebpgl8p QDG7NvHIQOqLgIEjEFze4TSvvnzd1W7bCUQ2jOYz5/7zCiWkLAqJWQASt8ruSAOuAl b+7r4ng8LSJ/fR3nCRP9oHwYE9C2mkFpii957TPI= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-2620] doc: Fix typo in documentation of __float128 suffix X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: 34b9a03353d3fdc5c57f2708469d0df78c6d6508 X-Git-Newrev: 4198b0d820a91fddcf58227f0614442f6838fad9 Message-Id: <20220912094809.D93DD38515F9@sourceware.org> Date: Mon, 12 Sep 2022 09:48:09 +0000 (GMT) List-Id: https://gcc.gnu.org/g:4198b0d820a91fddcf58227f0614442f6838fad9 commit r13-2620-g4198b0d820a91fddcf58227f0614442f6838fad9 Author: Jonathan Wakely Date: Mon Sep 12 10:40:10 2022 +0100 doc: Fix typo in documentation of __float128 suffix gcc/ChangeLog: * doc/extend.texi (Floating Types): Fix "_float128" typo. Diff: --- 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