This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang-tools-extra.
from 2abeb58 Reverting r298421 due to using a header that's unavailable to [...]
new d827923 [clang-tidy] modified identifier naming case to use CT_AnyCas [...]
new 98c9a63 [clang-tidy] clang-format the last patch. NFC
new fcb8aa0 [clang-tidy] Tests should not rely on STL headers being available.
The 3 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:
clang-tidy/readability/IdentifierNamingCheck.cpp | 178 ++++++++++++-----------
clang-tidy/readability/IdentifierNamingCheck.h | 12 +-
test/clang-tidy/check_clang_tidy.py | 5 +
3 files changed, 106 insertions(+), 89 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 zack/headers-cleanups
in repository glibc.
discards 5dae953 Remove __need macros from errno.h (__need_Emath, __need_error_t).
discards 5948c60 Convert signal.h from __need macros to bits/types/ headers.
discards a9db20a The bits/types/*.h treatment for stdio and wchar.
discards 7edb60b Suppress internal declarations for most of the testsuite.
discards e37bd59 Remove _IO_MTSAFE_IO from public headers.
adds 1e4d83f Deprecate libnsl by default (only shared library will be buil [...]
adds e4e2621 Fix failing test malloc/tst-interpose-nothread with GCC 7.
adds 261d014 Merge branch 'master' of ssh://sourceware.org/git/glibc
adds a640393 Regenerate INSTALL.
adds c15f8eb x86-64: Improve branch predication in _dl_runtime_resolve_avx [...]
new b9e8c90 Another round of inclusion fixes for _ISOMAC testsuite.
new f56c331 Remove _IO_MTSAFE_IO from public headers.
new 1ec93d4 Suppress internal declarations for most of the testsuite.
new 316f2c8 The bits/types/*.h treatment for stdio and wchar.
new c2a4e44 Convert signal.h from __need macros to bits/types/ headers.
new c1fcf1a Remove __need macros from errno.h (__need_Emath, __need_error_t).
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 (5dae953)
\
N -- N -- N refs/heads/zack/headers-cleanups (c1fcf1a)
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 6 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:
ChangeLog | 76 +++++++++++++++++++++++++++++++++
INSTALL | 6 +++
NEWS | 20 +++++++++
config.h.in | 4 ++
config.make.in | 1 +
configure | 18 ++++++++
configure.ac | 11 +++++
include/libc-symbols.h | 6 +++
include/libio.h | 14 +++---
include/rpcsvc/nislib.h | 33 ++++++++++++++
include/rpcsvc/yp.h | 4 ++
include/rpcsvc/ypclnt.h | 9 ++++
libio/libio.h | 11 +++++
malloc/tst-interpose-aux.c | 2 +-
manual/install.texi | 7 +++
nis/Makefile | 17 ++++++--
nis/nis_add.c | 2 +-
nis/nis_addmember.c | 1 +
nis/nis_call.c | 12 +++---
nis/nis_checkpoint.c | 1 +
nis/nis_clone_dir.c | 1 +
nis/nis_clone_obj.c | 2 +-
nis/nis_clone_res.c | 1 +
nis/nis_creategroup.c | 1 +
nis/nis_defaults.c | 6 +--
nis/nis_destroygroup.c | 1 +
nis/nis_domain_of.c | 1 +
nis/nis_domain_of_r.c | 2 +-
nis/nis_error.c | 7 ++-
nis/nis_file.c | 5 ++-
nis/nis_free.c | 10 ++---
nis/nis_getservlist.c | 2 +
nis/nis_ismember.c | 1 +
nis/nis_local_names.c | 8 ++--
nis/nis_lookup.c | 2 +-
nis/nis_mkdir.c | 1 +
nis/nis_modify.c | 2 +-
nis/nis_ping.c | 1 +
nis/nis_print.c | 15 ++++---
nis/nis_print_group_entry.c | 1 +
nis/nis_remove.c | 2 +-
nis/nis_removemember.c | 1 +
nis/nis_rmdir.c | 1 +
nis/nis_server.c | 3 ++
nis/nis_subr.c | 14 +++---
nis/nis_table.c | 11 +++--
nis/nis_util.c | 2 +-
nis/nis_verifygroup.c | 1 +
nis/nis_xdr.c | 8 ++--
nis/yp_xdr.c | 47 +++++++++++---------
nis/ypclnt.c | 20 ++++++---
nis/ypupdate_xdr.c | 6 +--
stdio-common/bug25.c | 1 +
sunrpc/Makefile | 3 +-
support/tst-support_format_dns_packet.c | 4 ++
support/tst-support_record_failure-2.sh | 10 ++---
support/tst-support_record_failure.c | 1 +
sysdeps/x86_64/dl-trampoline.S | 3 +-
sysdeps/x86_64/dl-trampoline.h | 9 ++--
59 files changed, 370 insertions(+), 102 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 glibc.
from c15f8eb x86-64: Improve branch predication in _dl_runtime_resolve_avx [...]
new b9e8c90 Another round of inclusion fixes for _ISOMAC testsuite.
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:
ChangeLog | 9 +++++++++
stdio-common/bug25.c | 1 +
support/tst-support_format_dns_packet.c | 4 ++++
support/tst-support_record_failure-2.sh | 10 +++++-----
support/tst-support_record_failure.c | 1 +
5 files changed, 20 insertions(+), 5 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 binutils-gdb.
from ffdbe86 Wrap locally used classes in anonymous namespace
new 79778b3 Remove @code for python
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:
gdb/doc/ChangeLog | 4 ++++
gdb/doc/python.texi | 2 +-
2 files changed, 5 insertions(+), 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 a21dc37 Backport r246321
new bdaeae7 Backport r246345
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 | 9 +++++++++
gcc/config/rs6000/rs6000.c | 5 ++++-
gcc/testsuite/ChangeLog | 8 ++++++++
gcc/testsuite/g++.dg/ext/mv8.C | 2 +-
4 files changed, 22 insertions(+), 2 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 binutils-gdb.
from 9d736fb Import sys in gdb/python/lib/gdb/printer/bound_registers.py
new ffdbe86 Wrap locally used classes in anonymous namespace
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:
gdb/ChangeLog | 8 ++++++++
gdb/aarch64-tdep.c | 4 ++++
gdb/arm-tdep.c | 3 +++
gdb/linespec.c | 8 ++++++++
gdb/ui-out.c | 4 ++++
5 files changed, 27 insertions(+)
--
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 llvm.
from 490efde [X86] Remove unnecessary duplicate code (PR30649). NFCI.
new ef253e2 r286814 resulted that CallPenalty can be subtracted twice: - [...]
new f7a3695 [X86] Add multiply by constant tests (PR28513)
new 9570208 [CMake] Use variable interpolation instead of string concatenation
The 3 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:
lib/Transforms/IPO/Inliner.cpp | 2 +-
test/CodeGen/X86/mul-constant-i16.ll | 589 +++++++++++++++++++++++++++++++++++
test/CodeGen/X86/mul-constant-i32.ll | 515 ++++++++++++++++++++++++++++++
test/CodeGen/X86/mul-constant-i64.ll | 581 ++++++++++++++++++++++++++++++++++
tools/llvm-config/CMakeLists.txt | 6 +-
5 files changed, 1689 insertions(+), 4 deletions(-)
create mode 100644 test/CodeGen/X86/mul-constant-i16.ll
create mode 100644 test/CodeGen/X86/mul-constant-i32.ll
create mode 100644 test/CodeGen/X86/mul-constant-i64.ll
--
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 c396d01 Error message on target attribute on power target (PR target/79906)
new 343a3a7 Fix PR80082: LDRD erronously used for 64bit load on ARMv7-R
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 | 12 ++++++++++++
gcc/config/arm/arm-isa.h | 3 ++-
gcc/config/arm/arm-protos.h | 4 ++--
gcc/config/arm/arm.c | 7 +++----
gcc/config/arm/arm.h | 2 +-
gcc/testsuite/ChangeLog | 6 ++++++
gcc/testsuite/gcc.target/arm/atomic_loaddi_10.c | 15 +++++++++++++++
gcc/testsuite/gcc.target/arm/atomic_loaddi_11.c | 15 +++++++++++++++
8 files changed, 56 insertions(+), 8 deletions(-)
create mode 100644 gcc/testsuite/gcc.target/arm/atomic_loaddi_10.c
create mode 100644 gcc/testsuite/gcc.target/arm/atomic_loaddi_11.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 llvm.
from 84c3daf Revert "[ScalarEvolution] Predicate implication from operations"
new 490efde [X86] Remove unnecessary duplicate code (PR30649). NFCI.
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:
lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp | 5 -----
1 file changed, 5 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.