From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1075) id F093B3894C15; Tue, 27 Apr 2021 10:27:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org F093B3894C15 To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. 57b7ec1bd7b9cbe1f061f4e282214a4f96cb475a X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 2231b0fbba8ae7872944661fc53659e0b11c7497 X-Git-Newrev: 57b7ec1bd7b9cbe1f061f4e282214a4f96cb475a Message-Id: <20210427102757.F093B3894C15@sourceware.org> Date: Tue, 27 Apr 2021 10:27:57 +0000 (GMT) From: Jan Hubicka X-BeenThere: gcc-cvs-wwwdocs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs-wwwdocs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Apr 2021 10:27:58 -0000 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 57b7ec1bd7b9cbe1f061f4e282214a4f96cb475a (commit) from 2231b0fbba8ae7872944661fc53659e0b11c7497 (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 57b7ec1bd7b9cbe1f061f4e282214a4f96cb475a Author: Jan Hubicka Date: Tue Apr 27 12:27:31 2021 +0200 Reorder misplaced entries diff --git a/htdocs/gcc-11/changes.html b/htdocs/gcc-11/changes.html index a74e188e..63a668b3 100644 --- a/htdocs/gcc-11/changes.html +++ b/htdocs/gcc-11/changes.html @@ -59,6 +59,9 @@ You may also want to check out our
  • The front end for compiling BRIG format of Heterogeneous System Architecture Intermediate Language (HSAIL) has been deprecated and will likely be removed in a future release.
  • + +
  • Some short options of the gcov tool have been renamed: -i to -j + and -j to -H.
  • @@ -176,6 +179,23 @@ You may also want to check out our +
  • A series of conditional expressions that compare the same variable can be transformed into a switch statement + if each of them contains a comparison expression. Example: +
    +        int IsHTMLWhitespace(int aChar) {
    +          return aChar == 0x0009 || aChar == 0x000A ||
    +                 aChar == 0x000C || aChar == 0x000D ||
    +                 aChar == 0x0020;
    +        }
    +       
    + This statement can be transformed into a switch statement and then expanded into a bit-test. +
  • +
  • + New command-line options: +
      +
    • -fbit-tests, enabled by default, can be used to enable or disable switch expansion using bit-tests.
    • +
    +
  • Inter-procedural optimization improvements:
      @@ -208,6 +228,7 @@ You may also want to check out our Using -fprofile-values, was improved by tracking more target values for e.g. indirect calls. +
    • GCOV data file format outputs smaller files by representing zero counters in a more compact way.
  • @@ -323,26 +344,6 @@ You may also want to check out our This functionality requires Binutils version 2.36 or later.

    -
  • A series of conditional expressions that compare the same variable can be transformed into a switch statement - if each of them contains a comparison expression. Example: -
    -        int IsHTMLWhitespace(int aChar) {
    -          return aChar == 0x0009 || aChar == 0x000A ||
    -                 aChar == 0x000C || aChar == 0x000D ||
    -                 aChar == 0x0020;
    -        }
    -       
    - This statement can be transformed into a switch statement and then expanded into a bit-test. -
  • -
  • - New command-line options: -
      -
    • -fbit-tests, enabled by default, can be used to enable or disable switch expansion using bit-tests.
    • -
    -
  • -
  • GCOV data file format outputs smaller files by representing zero counters in a more compact way.
  • -
  • Some short options of the gcov tool have been renamed: -i to -j - and -j to -H.
  • C

    ----------------------------------------------------------------------- Summary of changes: htdocs/gcc-11/changes.html | 41 +++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) hooks/post-receive -- gcc-wwwdocs