This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 51cb6d0 Daily bump.
new 1d2e0f2 2016-04-14 Richard Biener <rguenther(a)suse.de>
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 | 13 +++++
gcc/testsuite/ChangeLog | 6 ++
gcc/testsuite/gcc.dg/torture/pr70623-2.c | 41 ++++++++++++++
gcc/testsuite/gcc.dg/torture/pr70623.c | 32 +++++++++++
gcc/tree-ssa-pre.c | 97 ++++++++++++++++----------------
5 files changed, 140 insertions(+), 49 deletions(-)
create mode 100644 gcc/testsuite/gcc.dg/torture/pr70623-2.c
create mode 100644 gcc/testsuite/gcc.dg/torture/pr70623.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch aoliva/libcp1.stgit
in repository gcc.
from bfbcaab refresh
new 8f41064 new
new 8a9a562 refresh (create temporary patch)
new ee61edc refresh
new e84dae7 document template friends
new 1366509 document template friends
new 89802c3 Refresh of template-friends.patch
new a047912 new
new 5790086 refresh (create temporary patch)
new 4656e04 refresh
The 9 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:
meta | 5 +-
patches/template-friends.patch | 107 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 110 insertions(+), 2 deletions(-)
create mode 100644 patches/template-friends.patch
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch aoliva/libcp1
in repository gcc.
from d6085df revamp cdtor api
new e84dae7 document template friends
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:
include/gcc-cp-fe.def | 51 +++++++++++++++++++++++++++++++++++++++++++++-----
libcc1/libcp1plugin.cc | 15 ++++++++++-----
2 files changed, 56 insertions(+), 10 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 9aed062 PR c++/69517 - [5/6 regression] SEGV on a VLA with excess ini [...]
new 51cb6d0 Daily bump.
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/DATESTAMP | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gcc-5-branch
in repository gcc.
from bab7a98 Daily bump.
new e99fb78 Daily bump.
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/DATESTAMP | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gcc-4_9-branch
in repository gcc.
from 746ec6e [ARM] PR target/70566 Check that condition register is dead i [...]
new 3440cf1 Daily bump.
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/DATESTAMP | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from d56e1cd check_GNU_style.sh: Avoid false posivies in trailing operator [...]
new 9aed062 PR c++/69517 - [5/6 regression] SEGV on a VLA with excess ini [...]
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 | 7 +
gcc/cp/ChangeLog | 16 +
gcc/cp/cp-tree.h | 2 +
gcc/cp/decl.c | 45 +-
gcc/cp/init.c | 315 +++++++++
gcc/cp/typeck2.c | 4 +-
gcc/doc/extend.texi | 38 +-
gcc/testsuite/ChangeLog | 14 +
gcc/testsuite/c-c++-common/ubsan/vla-1.c | 30 +-
gcc/testsuite/g++.dg/cpp1y/vla11.C | 711 +++++++++++++++++++++
gcc/testsuite/g++.dg/cpp1y/vla12.C | 99 +++
gcc/testsuite/g++.dg/cpp1y/vla13.C | 260 ++++++++
gcc/testsuite/g++.dg/cpp1y/vla14.C | 48 ++
gcc/testsuite/g++.dg/cpp1y/vla3.C | 43 ++
gcc/testsuite/g++.dg/init/array24.C | 2 +-
gcc/testsuite/g++.dg/ubsan/vla-1.C | 5 +-
libstdc++-v3/ChangeLog | 6 +
.../testsuite/25_algorithms/rotate/moveable2.cc | 3 +-
18 files changed, 1628 insertions(+), 20 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp1y/vla11.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/vla12.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/vla13.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/vla14.C
create mode 100644 gcc/testsuite/g++.dg/cpp1y/vla3.C
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 594645e Adjust for new empty class parameter passing ABI.
new d56e1cd check_GNU_style.sh: Avoid false posivies in trailing operator [...]
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:
contrib/ChangeLog | 5 +++++
contrib/check_GNU_style.sh | 5 +++--
2 files changed, 8 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.