This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 4ee06690a47 c++: Fix ICE with concept used as function [PR116477] new 4e44fe4280b c++: C++26 va_start - part of P3348R4 - C++26 should refer [...]
The 1 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/c-family/c-common.cc | 9 +- gcc/c-family/c-common.h | 1 + gcc/cp/cp-objcp-common.cc | 1 + gcc/cp/cp-tree.h | 1 + gcc/cp/decl.cc | 13 +- gcc/cp/decl2.cc | 6 +- gcc/cp/lambda.cc | 7 +- gcc/cp/lex.cc | 2 + gcc/cp/module.cc | 2 +- gcc/cp/name-lookup.cc | 6 +- gcc/cp/parser.cc | 131 +++++++++++++++++++++ gcc/cp/pt.cc | 10 +- gcc/cp/tree.cc | 16 ++- gcc/cp/typeck.cc | 15 ++- gcc/ginclude/stdarg.h | 6 +- gcc/testsuite/c-c++-common/Wvarargs.c | 2 +- gcc/testsuite/c-c++-common/cpp/has-builtin-4.c | 2 +- .../c23-stdarg-4.c => g++.dg/cpp26/stdarg1.C} | 52 ++++---- .../c23-stdarg-6.c => g++.dg/cpp26/stdarg2.C} | 69 +++++------ gcc/testsuite/g++.dg/cpp26/stdarg3.C | 7 ++ gcc/testsuite/g++.dg/cpp26/stdarg4.C | 7 ++ gcc/testsuite/g++.dg/cpp26/stdarg5.C | 5 + .../c23-stdarg-10.c => g++.dg/cpp26/stdarg6.C} | 30 ++--- gcc/testsuite/g++.dg/cpp26/stdarg7.C | 11 ++ gcc/testsuite/g++.dg/cpp26/stdarg8.C | 26 ++++ gcc/testsuite/g++.dg/cpp26/stdarg9.C | 16 +++ gcc/testsuite/g++.dg/opt/pr60849.C | 2 +- 27 files changed, 341 insertions(+), 114 deletions(-) copy gcc/testsuite/{gcc.dg/c23-stdarg-4.c => g++.dg/cpp26/stdarg1.C} (75%) copy gcc/testsuite/{gcc.dg/c23-stdarg-6.c => g++.dg/cpp26/stdarg2.C} (79%) create mode 100644 gcc/testsuite/g++.dg/cpp26/stdarg3.C create mode 100644 gcc/testsuite/g++.dg/cpp26/stdarg4.C create mode 100644 gcc/testsuite/g++.dg/cpp26/stdarg5.C copy gcc/testsuite/{gcc.dg/c23-stdarg-10.c => g++.dg/cpp26/stdarg6.C} (50%) create mode 100644 gcc/testsuite/g++.dg/cpp26/stdarg7.C create mode 100644 gcc/testsuite/g++.dg/cpp26/stdarg8.C create mode 100644 gcc/testsuite/g++.dg/cpp26/stdarg9.C