From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1534) id E1C0B385841D; Thu, 4 Apr 2024 20:10:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E1C0B385841D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1712261435; bh=eIWantCoban1I3NvoB38Pudr0eZm9jzw/HoLDHLZg7s=; h=To:Subject:Date:From:From; b=Hga2ZPt5DfBFCrzgDedvF+M1rah2WaRU2yQ67cs4vvpgvEtE7px0gzYnL2ZrD9HJi XafrwcdtEBRGGumkOwjL/hDyHHYa+rTBXEDlv/+sTph0kO2jS1mUv+kYw7NLc/M9bg 3Ob2qhm1FPTo2yTT7pjjshfV1XrjwDhGbFQN0hC4= To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. c9e275660a19c804dd8c591c73cb9b169a9d7573 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 6eeeb6a53c2e57e3f02f97da176589cf15877247 X-Git-Newrev: c9e275660a19c804dd8c591c73cb9b169a9d7573 Message-Id: <20240404201035.E1C0B385841D@sourceware.org> Date: Thu, 4 Apr 2024 20:10:35 +0000 (GMT) From: Tobias Burnus 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 c9e275660a19c804dd8c591c73cb9b169a9d7573 (commit) from 6eeeb6a53c2e57e3f02f97da176589cf15877247 (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 c9e275660a19c804dd8c591c73cb9b169a9d7573 Author: Tobias Burnus Date: Thu Apr 4 22:07:28 2024 +0200 gcc-14/changes.html: Fix HTML syntax W3.org's HTML checker complained about missing and about
    ...
within a

...

(or rather: it complained about the unexpected '

'). diff --git a/htdocs/gcc-14/changes.html b/htdocs/gcc-14/changes.html index 045893cf..1cc68430 100644 --- a/htdocs/gcc-14/changes.html +++ b/htdocs/gcc-14/changes.html @@ -861,7 +861,7 @@ __asm (".global __flmap_lock" "\n\t"
  • The analyzer now makes use of the function attribute - alloc_size + alloc_size allowing -fanalyzer to emit @@ -887,7 +887,7 @@ __asm (".global __flmap_lock" "\n\t"
  • -

    The warning + The warning -Wanalyzer-out-of-bounds has been extended so that, where possible, it will emit a text-based diagram visualizing the spatial relationship between @@ -899,9 +899,9 @@ __asm (".global __flmap_lock" "\n\t" whether they overlap, are touching, are close or far apart; which one is before or after in memory, the relative sizes involved, the direction of the access (read vs write), and, in some cases, - the values of data involved.

    + the values of data involved.

    Such "text art" diagrams can be controlled (or suppressed) via a new - -fdiagnostics-text-art-charset= option. + -fdiagnostics-text-art-charset= option.

    For example, given the out-of-bounds write in strcat in:

    @@ -953,17 +953,17 @@ it emits:
       
  • The SARIF output from - -fdiagnostics-format= + -fdiagnostics-format= now adds indentation and newlines to reflect the logical JSON structure of the data. The previous compact behavior can be restored via the new option - -fno-diagnostics-json-formatting. + -fno-diagnostics-json-formatting. This also applies to the older output format named "json".
  • If profiling information about the compiler itself is requested via - -ftime-report, + -ftime-report, and a SARIF output format is requested via - -fdiagnostics-format=, + -fdiagnostics-format=, then the timing and memory usage data is now written in JSON form into the SARIF output, rather than as plain text to stderr.
  • ----------------------------------------------------------------------- Summary of changes: htdocs/gcc-14/changes.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) hooks/post-receive -- gcc-wwwdocs