From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2142) id AED063858C5E; Fri, 10 Mar 2023 08:41:36 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AED063858C5E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1678437696; bh=3ndnh0F4KXjZlqXxQ3l0bePChXb/RbGl8mtO+Ig7M5A=; h=To:Subject:Date:From:From; b=puk6bLp7MhzcGXsH4zrIQG3BwjVnB9VrGSkOTVBxL37KEMgA0T2h4uvFL5WfT51jg 2+OS5LTQ4J4x57XWVksJ0kKXnT/hfFiMuf/zD2cjt6j/RtSY1orqu01n7ieb5Be6S4 0d4xZnC6tf+sRcAz6akP0BxiTQFfewEmOdW4X1+4= To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. e7ae9aaeb5b46dabb53e99370957998df23dae89 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: d1c6bdebaf26da2ca69538572aa822a12d845c11 X-Git-Newrev: e7ae9aaeb5b46dabb53e99370957998df23dae89 Message-Id: <20230310084136.AED063858C5E@sourceware.org> Date: Fri, 10 Mar 2023 08:41:36 +0000 (GMT) From: Gerald Pfeifer List-Id: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "gcc-wwwdocs". The branch, master has been updated via e7ae9aaeb5b46dabb53e99370957998df23dae89 (commit) from d1c6bdebaf26da2ca69538572aa822a12d845c11 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e7ae9aaeb5b46dabb53e99370957998df23dae89 Author: Gerald Pfeifer Date: Fri Mar 10 09:41:24 2023 +0100 gcc-13: Further markup fixes diff --git a/htdocs/gcc-13/porting_to.html b/htdocs/gcc-13/porting_to.html index 7d14e9e3..0ee58802 100644 --- a/htdocs/gcc-13/porting_to.html +++ b/htdocs/gcc-13/porting_to.html @@ -129,7 +129,7 @@ in C++. The new behavior is enabled by default in FLT_EVAL_METHOD is 1 or 2 and affects the behavior of floating point constants and expressions.

-

E.g. for FLT_EVAL_METHOD equal to 2 on ia32 +

E.g. for FLT_EVAL_METHOD equal to 2 on ia32


 #include <stdlib.h>
@@ -137,7 +137,7 @@ void foo (void) { if (1.1f + 3.3f != 1.1L + 3.3L) abort (); }
 void bar (void) { double d = 4.2; if (d == 4.2) abort (); }
 
-will not abort with standard excess precision, because constants and expressions +

will not abort with standard excess precision, because constants and expressions in float or double are evaluated in precision of long double and demoted only on casts or assignments, but will abort with fast excess precision, where whether something is evaluated in ----------------------------------------------------------------------- Summary of changes: htdocs/gcc-13/porting_to.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- gcc-wwwdocs