This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch roland/pr77609 in repository gcc.
discards b9a216a984d PR other/77609: Let the assembler choose ELF section types [...] adds d7d46e522a5 Daily bump. adds 9960ad272c3 PR c++/84520 - ICE with generic lambda in NSDMI. adds f52b11fe7d3 PR c++/84441 - ICE with base initialized from ?: adds bb85f261db7 PR c++/84560 - ICE capturing multi-dimensional VLA. adds 1d74f6b12b4 [IEPM] don't preserve lexical blocks just for debug inline markers adds 6cf48a091fd Fix formatting of -ftime-report. adds 36b4ff59406 PR target/84575 * gcc.target/i386/pr84309.c: Add -mno-avx [...] adds cb2964edb7c Implement the missing bits of LWG 2769 adds 2d99ce8c214 Make groups more generic (PR gcov-profile/84548). adds 583ab4de1ab 2018-02-27 Richard Biener rguenther@suse.de adds 2538bd2e907 2018-02-27 Richard Biener rguenther@suse.de adds 6ba0e3e2446 PR c++/84489 - dependent default template argument adds 141db77d360 * cp-tree.h: Adjust comment. new 7e635af31c4 PR other/77609: Let the assembler choose ELF section types [...]
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (b9a216a984d) \ N -- N -- N refs/heads/roland/pr77609 (7e635af31c4)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
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/ChangeLog | 42 +++++++++++++++++++++- gcc/DATESTAMP | 2 +- gcc/cp/ChangeLog | 16 +++++++++ gcc/cp/call.c | 9 +++++ gcc/cp/cp-tree.h | 2 +- gcc/cp/lambda.c | 5 ++- gcc/cp/pt.c | 21 +++++++---- gcc/cp/tree.c | 2 ++ gcc/gcov.c | 10 ++++-- gcc/graphite-scop-detection.c | 13 +++++-- gcc/testsuite/ChangeLog | 15 ++++++++ gcc/testsuite/g++.dg/cpp0x/elision3.C | 21 +++++++++++ gcc/testsuite/g++.dg/cpp0x/fntmpdefarg7.C | 10 ++++++ gcc/testsuite/g++.dg/cpp0x/lambda/lambda-vla2.C | 12 +++++++ gcc/testsuite/g++.dg/cpp1y/lambda-generic-nsdmi1.C | 8 +++++ gcc/testsuite/g++.dg/gcov/pr84548.C | 19 ++++++++++ gcc/testsuite/gcc.dg/tree-ssa/pr84512.c | 15 ++++++++ gcc/testsuite/gcc.target/i386/pr84309.c | 2 +- gcc/timevar.c | 21 +++++------ gcc/tree-ssa-live.c | 15 ++++---- gcc/tree-vect-loop.c | 35 +++++++++++------- gcc/varasm.c | 19 +++++++++- libstdc++-v3/ChangeLog | 11 ++++++ libstdc++-v3/include/std/any | 36 +++++++------------ .../testsuite/20_util/any/misc/any_cast.cc | 9 ----- .../testsuite/20_util/any/misc/any_cast_neg.cc | 23 +++++++++--- 26 files changed, 307 insertions(+), 86 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/elision3.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/fntmpdefarg7.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-vla2.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/lambda-generic-nsdmi1.C create mode 100644 gcc/testsuite/g++.dg/gcov/pr84548.C create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr84512.c