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 69ea3d97a04 Daily bump.
new 0989a6df978 d: Use read() to load contents of stdin into memory.
new 6f2ab69ae27 d: Limit recursive expansion to a common global limit.
new b30aeaa173b d: Fix no NRVO when returning an array of a non-POD struct
new 8427c3dcfb3 Daily bump.
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/DATESTAMP | 2 +-
gcc/d/ChangeLog | 37 ++++++++++++++++++++++
gcc/d/d-codegen.cc | 4 +--
gcc/d/d-lang.cc | 43 ++++++++++++++++----------
gcc/d/dmd/dmacro.c | 7 ++---
gcc/d/dmd/dtemplate.c | 19 ++++++++----
gcc/d/dmd/expressionsem.c | 2 +-
gcc/d/dmd/func.c | 5 +--
gcc/d/dmd/globals.h | 2 ++
gcc/d/dmd/mtype.c | 4 +--
gcc/d/dmd/optimize.c | 11 ++++++-
gcc/d/types.cc | 7 +++--
gcc/testsuite/ChangeLog | 16 ++++++++++
gcc/testsuite/gdc.dg/pr96157a.d | 24 +++++++++++++++
gcc/testsuite/gdc.dg/pr96157b.d | 46 ++++++++++++++++++++++++++++
gcc/testsuite/gdc.test/compilable/ice20092.d | 10 ++++++
16 files changed, 202 insertions(+), 37 deletions(-)
create mode 100644 gcc/testsuite/gdc.dg/pr96157a.d
create mode 100644 gcc/testsuite/gdc.dg/pr96157b.d
create mode 100644 gcc/testsuite/gdc.test/compilable/ice20092.d
--
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 releases/gcc-8
in repository gcc.
from 3f65e214c0a Daily bump.
new c4081a0b257 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 44c677d1ebb x86: Fix up ssse3_pshufbv8qi splitter
new 8e1be7efcb1 2020-8-20 José Rui Faustino de Sousa <jrfsousa(a)gmail.com>
new cd49b706789 2020-8-21 Steve Kargl <sgk(a)troutmask.apl.washington.edu>
new 8f7d99acf6d 2020-8-20 José Rui Faustino de Sousa <jrfsousa(a)gmail.com>
new 3a7a95a220c 2020-8-20 José Rui Faustino de Sousa <jrfsousa(a)gmail.com>
new a240e83ce9d 2020-8-20 José Rui Faustino de Sousa <jrfsousa(a)gmail.com>
new 6ccadc4c048 Use get_size_range instead of get_range to obtain range of [...]
new cf2bc8617ae Daily bump.
The 7 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 | 11 ++
gcc/DATESTAMP | 2 +-
gcc/builtins.c | 9 +-
gcc/fortran/ChangeLog | 32 +++++
gcc/fortran/expr.c | 8 +-
gcc/fortran/interface.c | 5 +-
gcc/fortran/module.c | 42 ++++++-
gcc/fortran/simplify.c | 2 +-
gcc/testsuite/ChangeLog | 28 +++++
gcc/testsuite/gcc.dg/Wstringop-overread-3.c | 188 ++++++++++++++++++++++++++++
gcc/testsuite/gfortran.dg/PR94110.f90 | 88 +++++++++++++
gcc/testsuite/gfortran.dg/PR95352.f90 | 27 ++++
gcc/testsuite/gfortran.dg/PR96726.f90 | 72 +++++++++++
gcc/testsuite/gfortran.dg/PR96727.f90 | 34 +++++
gcc/testsuite/gfortran.dg/PR96728.f90 | 49 ++++++++
15 files changed, 590 insertions(+), 7 deletions(-)
create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overread-3.c
create mode 100644 gcc/testsuite/gfortran.dg/PR94110.f90
create mode 100644 gcc/testsuite/gfortran.dg/PR95352.f90
create mode 100644 gcc/testsuite/gfortran.dg/PR96726.f90
create mode 100644 gcc/testsuite/gfortran.dg/PR96727.f90
create mode 100644 gcc/testsuite/gfortran.dg/PR96728.f90
--
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 devel/omp/gcc-10
in repository gcc.
from 1c95767bdbb OpenMP: Improve map-clause error message for array function [...]
new 20f37fd2f9c Clean up loop variable extraction in OpenACC kernels loop a [...]
new df5f2065bad Relax some restrictions on the loop bound in kernels loop a [...]
The 2 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/c-family/ChangeLog.omp | 12 +
gcc/c-family/c-omp.c | 306 ++++++++++++++-------
gcc/testsuite/ChangeLog.omp | 5 +
.../goacc/kernels-loop-annotation-21.c | 42 +++
.../goacc/kernels-loop-annotation-22.c | 41 +++
5 files changed, 304 insertions(+), 102 deletions(-)
create mode 100644 gcc/testsuite/c-c++-common/goacc/kernels-loop-annotation-21.c
create mode 100644 gcc/testsuite/c-c++-common/goacc/kernels-loop-annotation-22.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 binutils-gdb.
from 42afa120eb1 ld: Add $NOSANTIZE_CFLAGS to more linker tests
new 18856f435ea Automatic date update in version.in
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:
bfd/version.h | 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 binutils-2_35-branch
in repository binutils-gdb.
from c987c2e07b0 Automatic date update in version.in
new b7e51dcf072 Automatic date update in version.in
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:
bfd/version.h | 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 gdb-9-branch
in repository binutils-gdb.
from ce6547f3e80 Automatic date update in version.in
new e50682434e9 Automatic date update in version.in
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:
bfd/version.h | 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 annotated tag v5.9-rc3
in repository linux.
at 02d49d0a468e (tag)
tagging f75aef392f869018f78cfedf3c320a6b3fcfda6b (commit)
replaces v5.9-rc2
tagged by Linus Torvalds
on Sun Aug 30 16:01:54 2020 -0700
- Log -----------------------------------------------------------------
Linux 5.9-rc3
-----BEGIN PGP SIGNATURE-----
iQFSBAABCAA8FiEEq68RxlopcLEwq+PEeb4+QwBBGIYFAl9ML+IeHHRvcnZhbGRz
QGxpbnV4LWZvdW5kYXRpb24ub3JnAAoJEHm+PkMAQRiGA8EIAIy/kTbFS0yrE9yV
hb98oX0z9+EU9YQg9vhaRWwPd+rJF/JMQZLqYcwbhjG9abaUL3T3fEcSAefMHw8E
LAt+hYzA38dHt7tqhsFQX3vV1VorvDVICBVN0yRPRWKKikq4OPIHzaAR9tleGAF5
8btQisl1PjN+obwYmLuNb6aX16OCwAF+uXOwehcoJs9dvMNhwtXRzfOflWzOvOo6
tE0bHErlylLDfLv4ZzEfczTdks4QJZ7C0xLSf3oN9AAynW42Xnhct4hi8qZY/hCf
CMaqeN4hdpub6TvQIqBdDqMMjEXGFgeNSnAEBQY9VpvUqz8NTu6sQxwgJEKDF5tg
d81lv2c=
=uW/F
-----END PGP SIGNATURE-----
-----------------------------------------------------------------------
This annotated tag includes the following new commits:
new f75aef392f86 Linux 5.9-rc3
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.
--
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 linux.
from e43327c706f2 Merge branch 'linus' of git://git.kernel.org/pub/scm/linux [...]
new f75aef392f86 Linux 5.9-rc3
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:
Makefile | 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.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_tk1/gnu-master-arm-spec2k6-O2_LTO
in repository toolchain/ci/glibc.
from 567b170501 Add RISC-V 32-bit target to build-many-glibcs.py
adds bd394d131c AArch64: Improve backwards memmove performance
adds 85f1848937 Remove obsolete default/nss code
No new revisions were added by this update.
Summary of changes:
nis/libnsl.h | 6 -----
nis/nss | 37 ------------------------------
sysdeps/aarch64/multiarch/memcpy_advsimd.S | 7 +++---
3 files changed, 4 insertions(+), 46 deletions(-)
delete mode 100644 nis/nss
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.