This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-10 in repository gcc.
from 080e737a851 c++: assignment to temporary [PR59950] new 93ec7bf2253 c++: pack init-capture of unresolved overload [PR102629] new d939233ef46 c++: constexpr trivial -fno-elide-ctors [PR104646] new 3efc6fd0df1 c++: lambda and the current instantiation [PR82980] new 67f742536cb c++: missing dtor with -fno-elide-constructors [PR100838] new fd669a0613a c++: low -faligned-new [PR102071] new cfa3a04be98 c++: rodata and defaulted ctor [PR104142]
The 6 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 | 6 +- gcc/cp/constexpr.c | 2 +- gcc/cp/decl.c | 4 + 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/cpp1z/aligned-new9.C | 30 ++++++++ gcc/testsuite/g++.dg/cpp2a/lambda-pack-init7.C | 18 +++++ gcc/testsuite/g++.dg/init/no-elide2.C | 32 ++++++++ gcc/testsuite/g++.dg/opt/const7.C | 7 ++ 13 files changed, 279 insertions(+), 9 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/init/no-elide2.C create mode 100644 gcc/testsuite/g++.dg/opt/const7.C