This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 137937b230c * MAINTAINERS: Add myself to Write After Approval. new 3e2314a91e2 * c-c++-common/ubsan/sanitize-recover-7.c (dg-options): Add -w. new 2bfb0686cae PR c/80116 * c-common.h (warn_for_multistatement_macros): [...]
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ChangeLog | 5 + gcc/c-family/ChangeLog | 11 ++ gcc/c-family/c-common.h | 2 + gcc/c-family/c-indentation.c | 12 +- gcc/c-family/c-indentation.h | 2 + gcc/c-family/c-warn.c | 89 +++++++++++++ gcc/c-family/c.opt | 4 + gcc/c/ChangeLog | 14 +++ gcc/c/c-parser.c | 55 +++++++-- gcc/cp/ChangeLog | 10 ++ gcc/cp/parser.c | 27 +++- gcc/doc/invoke.texi | 29 ++++- gcc/testsuite/ChangeLog | 19 +++ .../c-c++-common/Wmultistatement-macros-1.c | 118 ++++++++++++++++++ .../c-c++-common/Wmultistatement-macros-10.c | 82 ++++++++++++ .../c-c++-common/Wmultistatement-macros-11.c | 19 +++ .../c-c++-common/Wmultistatement-macros-2.c | 137 +++++++++++++++++++++ .../c-c++-common/Wmultistatement-macros-3.c | 12 ++ .../c-c++-common/Wmultistatement-macros-4.c | 14 +++ .../c-c++-common/Wmultistatement-macros-5.c | 18 +++ .../c-c++-common/Wmultistatement-macros-6.c | 22 ++++ .../c-c++-common/Wmultistatement-macros-7.c | 18 +++ .../c-c++-common/Wmultistatement-macros-8.c | 64 ++++++++++ .../c-c++-common/Wmultistatement-macros-9.c | 62 ++++++++++ .../c-c++-common/ubsan/sanitize-recover-7.c | 2 +- 25 files changed, 827 insertions(+), 20 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/Wmultistatement-macros-1.c create mode 100644 gcc/testsuite/c-c++-common/Wmultistatement-macros-10.c create mode 100644 gcc/testsuite/c-c++-common/Wmultistatement-macros-11.c create mode 100644 gcc/testsuite/c-c++-common/Wmultistatement-macros-2.c create mode 100644 gcc/testsuite/c-c++-common/Wmultistatement-macros-3.c create mode 100644 gcc/testsuite/c-c++-common/Wmultistatement-macros-4.c create mode 100644 gcc/testsuite/c-c++-common/Wmultistatement-macros-5.c create mode 100644 gcc/testsuite/c-c++-common/Wmultistatement-macros-6.c create mode 100644 gcc/testsuite/c-c++-common/Wmultistatement-macros-7.c create mode 100644 gcc/testsuite/c-c++-common/Wmultistatement-macros-8.c create mode 100644 gcc/testsuite/c-c++-common/Wmultistatement-macros-9.c