This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from fd1a2f63bca Allow for class type coarray parameters. [PR77871] new 998eb2a126d libcpp: Support extended characters for #pragma {push,pop}_ [...] new 8c56d697b35 libcpp: Fix _Pragma("GCC system_header") [PR114436]
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: .../c-c++-common/cpp/pragma-push-pop-utf8.c | 203 +++++++++++++++++++++ .../c-c++-common/cpp/pragma-system-header-1.h | 1 + .../c-c++-common/cpp/pragma-system-header-2.h | 5 + .../c-c++-common/cpp/pragma-system-header.c | 3 + gcc/testsuite/g++.dg/pch/pushpop-2.C | 18 ++ gcc/testsuite/g++.dg/pch/pushpop-2.Hs | 9 + gcc/testsuite/gcc.dg/pch/pushpop-2.c | 18 ++ gcc/testsuite/gcc.dg/pch/pushpop-2.hs | 9 + libcpp/charset.cc | 34 +--- libcpp/directives.cc | 186 ++++++++++--------- libcpp/errors.cc | 16 ++ libcpp/include/cpplib.h | 13 ++ libcpp/internal.h | 1 - libcpp/lex.cc | 33 ---- 14 files changed, 395 insertions(+), 154 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/cpp/pragma-push-pop-utf8.c create mode 100644 gcc/testsuite/c-c++-common/cpp/pragma-system-header-1.h create mode 100644 gcc/testsuite/c-c++-common/cpp/pragma-system-header-2.h create mode 100644 gcc/testsuite/c-c++-common/cpp/pragma-system-header.c create mode 100644 gcc/testsuite/g++.dg/pch/pushpop-2.C create mode 100644 gcc/testsuite/g++.dg/pch/pushpop-2.Hs create mode 100644 gcc/testsuite/gcc.dg/pch/pushpop-2.c create mode 100644 gcc/testsuite/gcc.dg/pch/pushpop-2.hs