This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from c7812ca23de Daily bump.
new d391dfdcd90 * cfgloop.h (struct loop): Add comment. New field orig_lo [...]
new c4b1b865371 * tree-loop-distribution.c (pass_loop_distribution::execut [...]
new 50eda3a8e96 * tree-loop-distribution.c (bb_top_order_index): New. (bb [...]
new f1edc00d0c7 * tree-loop-distribution.c (enum fuse_type, fuse_message): [...]
new 209a62a611f * tree-loop-distribution.c (loop_nest): New global var. ( [...]
new f3754041420 * tree-loop-distribution.c (params.h): Include header file [...]
new 889a392632a * tree-loop-distribution.c (struct partition): New field r [...]
new fd34627bab3 * tree-loop-distribution.c (ref_base_address): Delete. (s [...]
new 50f5937e78b * tree-loop-distribution.c (struct ddr_hasher): New. (ddr [...]
new f024aa045a1 * tree-loop-distribution.c (enum partition_type): New. (s [...]
The 10 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 | 90 +++++
gcc/cfgloop.h | 13 +-
gcc/cfgloopmanip.c | 3 +-
gcc/internal-fn.c | 8 +
gcc/internal-fn.def | 1 +
gcc/testsuite/ChangeLog | 4 +
gcc/testsuite/gcc.dg/tree-ssa/ldist-6.c | 2 +-
gcc/tree-loop-distribution.c | 662 ++++++++++++++++++++++----------
gcc/tree-vectorizer.c | 89 ++++-
9 files changed, 647 insertions(+), 225 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 llvm.
from 5d663de6b16 [MachineIRBuilder] Fix formatting. NFC.
new 501e5159caf [ARM] GlobalISel: Extract tiny helper. NFC
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/ARM/ARMLegalizerInfo.cpp | 7 +++++--
1 file changed, 5 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 newlib.
from 8a508f301 Cygwin: fix signal.h with _POSIX_C_SOURCE=1
new d736941a5 Implement bzero() via memset()
new 2390e71a4 Synchronize <strings.h> with latest FreeBSD
new 461152e4e Add ffsl(), ffsll(), fls(), flsl(), flsll()
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:
newlib/libc/include/string.h | 32 ++-------
newlib/libc/include/strings.h | 89 ++++++++++++++++---------
newlib/libc/misc/ffs.c | 14 +---
newlib/libc/string/Makefile.am | 5 ++
newlib/libc/string/Makefile.in | 64 ++++++++++++++----
newlib/libc/string/bzero.c | 13 ++--
newlib/libc/{stdio/fputs_u.c => string/ffsl.c} | 14 ++--
newlib/libc/{stdio/fputs_u.c => string/ffsll.c} | 14 ++--
newlib/libc/{stdio/fgets_u.c => string/fls.c} | 18 +++--
newlib/libc/{stdio/fgets_u.c => string/flsl.c} | 18 +++--
newlib/libc/{stdio/fgets_u.c => string/flsll.c} | 18 +++--
winsup/cygwin/syscalls.cc | 22 ------
12 files changed, 187 insertions(+), 134 deletions(-)
copy newlib/libc/{stdio/fputs_u.c => string/ffsl.c} (91%)
copy newlib/libc/{stdio/fputs_u.c => string/ffsll.c} (91%)
copy newlib/libc/{stdio/fgets_u.c => string/fls.c} (87%)
copy newlib/libc/{stdio/fgets_u.c => string/flsl.c} (87%)
copy newlib/libc/{stdio/fgets_u.c => string/flsll.c} (87%)
--
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 004d5b661f8 [MachineIRBuilder] Add buildOr helper. NFC.
new 4ecd96466ec [GlobalISel][X86] For now don't handle not trivial function [...]
new 5d663de6b16 [MachineIRBuilder] Fix formatting. NFC.
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:
include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h | 3 +--
lib/CodeGen/GlobalISel/MachineIRBuilder.cpp | 2 +-
lib/Target/X86/X86CallLowering.cpp | 12 +++++++++++-
3 files changed, 13 insertions(+), 4 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 clang.
from 0fc70de55d Fix invalid warnings for header guards in preambles
new d424218cf7 Add const to reference arguments of Diagnostic ctor
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/clang/Tooling/Core/Diagnostic.h | 6 +++---
lib/Tooling/Core/Diagnostic.cpp | 6 +++---
2 files changed, 6 insertions(+), 6 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 llvm.
from 179b206a6cb [GlobalIsel] allow x86_fp80 values to be dumped.
new 004d5b661f8 [MachineIRBuilder] Add buildOr helper. NFC.
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/llvm/CodeGen/GlobalISel/MachineIRBuilder.h | 13 +++++++++++++
lib/CodeGen/GlobalISel/MachineIRBuilder.cpp | 4 ++++
2 files changed, 17 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.
Yvan Roux pushed a change to branch linaro-local/gcc-7-integration-branch
in repository toolchain/gcc.
from 6de476b31d1 gcc/ Backport from trunk r248951. 2017-06-07 Tamar Chri [...]
new f83d498336b gcc/ Backport from trunk r248870. 2017-06-05 Kyrylo Tka [...]
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/config/aarch64/aarch64.md | 31 ++++++++++++++++++++++
gcc/config/aarch64/predicates.md | 4 +++
.../aarch64/{subs_compare_1.c => subs_compare_2.c} | 6 ++---
3 files changed, 38 insertions(+), 3 deletions(-)
copy gcc/testsuite/gcc.target/aarch64/{subs_compare_1.c => subs_compare_2.c} (82%)
--
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 dd5cf95d9bf [MachineIRBuilder] Add buildBinaryOp helper. NFC
new 179b206a6cb [GlobalIsel] allow x86_fp80 values to be dumped.
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/CodeGen/MachineInstr.cpp | 8 ++++++++
test/CodeGen/X86/GlobalISel/x86_64-fallback.ll | 18 ++++++++++++++++++
2 files changed, 26 insertions(+)
create mode 100644 test/CodeGen/X86/GlobalISel/x86_64-fallback.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 llvm.
from 90b8bac67b2 [globalisel][tablegen] Fix an unused variable warning in re [...]
new dd5cf95d9bf [MachineIRBuilder] Add buildBinaryOp helper. NFC
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/llvm/CodeGen/GlobalISel/MachineIRBuilder.h | 1 +
lib/CodeGen/GlobalISel/MachineIRBuilder.cpp | 40 ++++++----------------
2 files changed, 12 insertions(+), 29 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 e4bdd67955 X86: Disassemble primary opcode map's group 2 ModRM.reg == 6 [...]
new 15a7695fdc [ARM] Add support for Cortex-A55 and Cortex-A75.
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:
gas/ChangeLog | 5 +++++
gas/config/tc-arm.c | 6 ++++++
gas/doc/c-arm.texi | 2 ++
3 files changed, 13 insertions(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.