This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gcc-9-branch in repository gcc.
from 1dde74b7ccf Daily bump. new a7432fd56bd PR c++/82081 - tail call optimization breaks noexcept new 16e513ff665 PR c++/63149 - wrong auto deduction from braced-init-list new 5d6ef84ccee PR c++/85552 - wrong instantiation of dtor for DMI. new baafcab22e5 PR c++/90098 - partial specialization and class non-type parms.
The 4 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/ChangeLog | 6 ++++++ gcc/cp/ChangeLog | 20 ++++++++++++++++++ gcc/cp/call.c | 6 ++++++ gcc/cp/pt.c | 15 +++++++++----- gcc/cp/typeck2.c | 5 ++++- gcc/testsuite/g++.dg/cpp0x/initlist-deduce2.C | 8 +++++++ gcc/testsuite/g++.dg/cpp0x/nsdmi-list5.C | 30 +++++++++++++++++++++++++++ gcc/testsuite/g++.dg/cpp2a/nontype-class18.C | 17 +++++++++++++++ gcc/testsuite/g++.dg/cpp2a/nontype-class19.C | 13 ++++++++++++ gcc/testsuite/g++.dg/cpp2a/nontype-class20.C | 13 ++++++++++++ gcc/testsuite/g++.dg/cpp2a/nontype-class21.C | 10 +++++++++ gcc/testsuite/g++.dg/cpp2a/nontype-class22.C | 21 +++++++++++++++++++ gcc/testsuite/g++.dg/tree-ssa/tail-call-1.C | 11 ++++++++++ gcc/tree-tailcall.c | 7 +++++++ 14 files changed, 176 insertions(+), 6 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-deduce2.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/nsdmi-list5.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/nontype-class18.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/nontype-class19.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/nontype-class20.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/nontype-class21.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/nontype-class22.C create mode 100644 gcc/testsuite/g++.dg/tree-ssa/tail-call-1.C