This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-11 in repository gcc.
from 43146ecb33f Daily bump. new 5296b77556d c++: rodata and defaulted ctor [PR104142] new 394c852a6b4 c++: low -faligned-new [PR102071] new 0c45820ead8 c++: local function versioning [PR104669] new fe81f5bd3c3 c++: empty base constexpr -fno-elide-ctors [PR105245] new 728f97cf043 c++: temp cleanup in new [PR105265] new dc8739c2ab1 c++: lambda and the current instantiation [PR82980] new a67bc6320d3 c++: constexpr trivial -fno-elide-ctors [PR104646] new f0484f60e64 c++: pack init-capture of unresolved overload [PR102629]
The 8 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/cp/call.c | 8 +- gcc/cp/constexpr.c | 8 +- gcc/cp/decl.c | 24 ++++-- gcc/cp/decl2.c | 12 ++- gcc/cp/init.c | 15 +++- gcc/cp/lambda.c | 20 ++++- gcc/cp/pt.c | 8 +- .../g++.dg/cpp0x/constexpr-fno-elide-ctors1.C | 89 ++++++++++++++++++++++ gcc/testsuite/g++.dg/cpp0x/initlist-new6.C | 39 ++++++++++ .../g++.dg/cpp0x/lambda/lambda-current-inst1.C | 18 +++++ gcc/testsuite/g++.dg/cpp1y/constexpr-empty2.C | 1 + gcc/testsuite/g++.dg/cpp1z/aligned-new9.C | 30 ++++++++ gcc/testsuite/g++.dg/cpp2a/lambda-pack-init7.C | 18 +++++ gcc/testsuite/g++.dg/opt/const7.C | 7 ++ gcc/testsuite/g++.target/i386/mv31.C | 10 +++ 15 files changed, 287 insertions(+), 20 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-fno-elide-ctors1.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-new6.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-current-inst1.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/aligned-new9.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/lambda-pack-init7.C create mode 100644 gcc/testsuite/g++.dg/opt/const7.C create mode 100644 gcc/testsuite/g++.target/i386/mv31.C