This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 52f42dce15f [libgomp, testsuite] Fix hardcoded libexec in plugin/configfrag.ac new 07be8f8da4c c++: ICE with alias in pack expansion [PR103769] new 71e1db540c0 c++: mangling union{1} in template [PR104847] new 72bdfcb8483 c++: missing aggregate base ctor [PR102045] new 8bc5cdaafa2 c++: CTAD and member function references [PR103943] new c7361eb36fa c++: member alias declaration [PR103968] new b854ce130eb c++: CTAD and member alias template [PR102123] new 8796eb27e24 c++: visibility of local extern [PR103291] new 19b87a06482 c++: low -faligned-new [PR102071]
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.cc | 1 + gcc/cp/init.cc | 15 +++-- gcc/cp/mangle.cc | 2 +- gcc/cp/name-lookup.cc | 3 + gcc/cp/pt.cc | 28 ++++++++-- gcc/cp/tree.cc | 2 +- gcc/testsuite/g++.dg/abi/mangle-union1.C | 10 ++++ gcc/testsuite/g++.dg/cpp0x/alias-decl-mem1.C | 20 +++++++ gcc/testsuite/g++.dg/cpp0x/variadic-alias5.C | 9 +++ gcc/testsuite/g++.dg/cpp1z/aggr-base12.C | 24 ++++++++ gcc/testsuite/g++.dg/cpp1z/aligned-new9.C | 26 +++++++++ gcc/testsuite/g++.dg/cpp1z/class-deduction109.C | 64 ++++++++++++++++++++++ gcc/testsuite/g++.dg/cpp1z/class-deduction110.C | 28 ++++++++++ .../ext/visibility/visibility-local-extern1.C | 10 ++++ 14 files changed, 230 insertions(+), 12 deletions(-) create mode 100644 gcc/testsuite/g++.dg/abi/mangle-union1.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/alias-decl-mem1.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/variadic-alias5.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/aggr-base12.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/aligned-new9.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction109.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction110.C create mode 100644 gcc/testsuite/g++.dg/ext/visibility/visibility-local-extern1.C