This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gdb-7.12-branch
in repository binutils-gdb.
from 629ad95 Fix PR 20345 - call_function_by_hand_dummy: Assertion `tp->th [...]
new 30405e4 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_27-branch
in repository binutils-gdb.
from 8529d12 Automatic date update in version.in
new b600e3f 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 master
in repository llvm.
from dda50f2 Next set of additional error checks for invalid Mach-O files [...]
new 6642664 Wisely choose sext or zext when widening IV.
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/Transforms/Scalar/IndVarSimplify.cpp | 125 +++++++---
.../Transforms/IndVarSimplify/iv-widen-elim-ext.ll | 270 +++++++++++++++++++++
2 files changed, 358 insertions(+), 37 deletions(-)
create mode 100644 test/Transforms/IndVarSimplify/iv-widen-elim-ext.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 gcc-5-branch
in repository gcc.
from d00bdba 2016-09-28 Bill Schmidt <wschmidt(a)linux.vnet.ibm.com> [...]
new 8bb21d7 2016-09-28 Steven G. Kargl <kargl(a)gcc.gnu.org>
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/fortran/ChangeLog | 7 +++++++
gcc/fortran/frontend-passes.c | 3 +++
gcc/testsuite/ChangeLog | 6 ++++++
gcc/testsuite/gfortran.dg/pr77694.f90 | 7 +++++++
4 files changed, 23 insertions(+)
create mode 100644 gcc/testsuite/gfortran.dg/pr77694.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 master
in repository llvm.
from 1deea86 [RegisterBankInfo] Uniquely generate OperandsMapping.
new dda50f2 Next set of additional error checks for invalid Mach-O files [...]
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/Object/MachOObjectFile.cpp | 32 +++++++++++++++++++++
.../Inputs/macho-invalid-rpath-name_offset-toobig | Bin 0 -> 40 bytes
test/Object/Inputs/macho-invalid-rpath-name_toobig | Bin 0 -> 44 bytes
test/Object/Inputs/macho-invalid-rpath-small | Bin 0 -> 44 bytes
test/Object/macho-invalid.test | 9 ++++++
5 files changed, 41 insertions(+)
create mode 100644 test/Object/Inputs/macho-invalid-rpath-name_offset-toobig
create mode 100644 test/Object/Inputs/macho-invalid-rpath-name_toobig
create mode 100644 test/Object/Inputs/macho-invalid-rpath-small
--
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 lldb.
from d8c5b32 Add the ability for the task port to change when a process execs.
new a092616 Fix an issue where libc++ changed the type information we get [...]
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:
.../iterator/TestDataFormatterLibccIterator.py | 6 +-
.../data-formatter-stl/libcxx/iterator/main.cpp | 14 ++---
source/Plugins/Language/CPlusPlus/LibCxx.cpp | 69 ++++++++++++++++++++--
source/Plugins/Language/CPlusPlus/LibCxx.h | 1 +
4 files changed, 75 insertions(+), 15 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 9455bc7 [Coroutines] Add proper mangling for operator co_await for Mi [...]
new 6d0bdd7 [CUDA] Disallow exceptions in device code.
new e5804c1 [CUDA] Disallow variable-length arrays in CUDA device code.
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/clang/Basic/DiagnosticSemaKinds.td | 7 +++++
include/clang/Sema/Sema.h | 12 ++++++++
lib/Sema/SemaCUDA.cpp | 44 ++++++++++++++++++++++++++++++
lib/Sema/SemaExprCXX.cpp | 4 +++
lib/Sema/SemaStmt.cpp | 4 +++
lib/Sema/SemaType.cpp | 4 +++
test/SemaCUDA/exceptions-host-device.cu | 38 ++++++++++++++++++++++++++
test/SemaCUDA/exceptions.cu | 21 ++++++++++++++
test/SemaCUDA/vla-host-device.cu | 21 ++++++++++++++
test/SemaCUDA/vla.cu | 12 ++++++++
10 files changed, 167 insertions(+)
create mode 100644 test/SemaCUDA/exceptions-host-device.cu
create mode 100644 test/SemaCUDA/exceptions.cu
create mode 100644 test/SemaCUDA/vla-host-device.cu
create mode 100644 test/SemaCUDA/vla.cu
--
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 43a65cd Fix bug where template argument deduction of a non-type templ [...]
new 9455bc7 [Coroutines] Add proper mangling for operator co_await for Mi [...]
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/AST/MicrosoftMangle.cpp | 10 ++-------
.../microsoft-abi-operator-coawait.cpp | 25 ++++++++++++++++++++++
2 files changed, 27 insertions(+), 8 deletions(-)
create mode 100644 test/CodeGenCoroutines/microsoft-abi-operator-coawait.cpp
--
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 libcxx.
from ff4f298 Mark libc++ internal globals with _LIBCPP_SAFE_STATIC.
new b160392 [libc++] Clarify _LIBCPP_NEW_DELETE_VIS for Windows
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:
docs/DesignDocs/VisibilityMacros.rst | 13 +++++++++++++
include/new | 4 ++--
2 files changed, 15 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 release/2.24/master
in repository glibc.
from 66b8f3d powerpc: Fix POWER9 implies
new 28202d1 posix: Correctly enable/disable cancellation on Linux posix_spawn
new 066437a posix: Correctly block/unblock all signals on Linux posix_spawn
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:
ChangeLog | 11 +++
nptl/Makefile | 2 +-
nptl/tst-exec5.c | 196 +++++++++++++++++++++++++++++++++++++++
sysdeps/unix/sysv/linux/spawni.c | 14 ++-
4 files changed, 214 insertions(+), 9 deletions(-)
create mode 100644 nptl/tst-exec5.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 dc72d13 [sancov] introducing symbolized coverage files (.symcov)
new 5c6805e [RegisterBankInfo] Rework the APIs of ValueMapping.
new 1deea86 [RegisterBankInfo] Uniquely generate OperandsMapping.
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/RegisterBankInfo.h | 86 +++++++++++++++-----
lib/CodeGen/GlobalISel/RegisterBankInfo.cpp | 93 +++++++++++++++++-----
lib/Target/AArch64/AArch64RegisterBankInfo.cpp | 43 ++++++----
3 files changed, 169 insertions(+), 53 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 release_39
in repository clang.
from 07307f9 Minor change to OpenCL release notes to add one missing item.
new c3709e7 Merging rr280190: ------------------------------------------- [...]
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/AST/DeclTemplate.h | 10 ++
include/clang/Basic/DiagnosticSemaKinds.td | 4 +
include/clang/Sema/Sema.h | 23 +++--
lib/Sema/SemaDecl.cpp | 3 +-
lib/Sema/SemaExpr.cpp | 5 +
lib/Sema/SemaTemplate.cpp | 13 ++-
lib/Sema/SemaTemplateInstantiate.cpp | 37 ++++++--
lib/Sema/SemaTemplateInstantiateDecl.cpp | 35 +++++--
test/SemaTemplate/instantiate-self.cpp | 103 ++++++++++++++++++---
.../instantiation-depth-exception-spec.cpp | 15 +--
test/SemaTemplate/instantiation-depth.cpp | 9 +-
11 files changed, 206 insertions(+), 51 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 827cdbc cxx_status: use HTML5 details/summary elements to hide implem [...]
new 43a65cd Fix bug where template argument deduction of a non-type templ [...]
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/Sema/SemaTemplateDeduction.cpp | 31 +++++++++++++++++++++++++++-
test/SemaTemplate/deduction.cpp | 10 ++++++++-
test/SemaTemplate/temp_arg_nontype_cxx1z.cpp | 2 +-
3 files changed, 40 insertions(+), 3 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 libcxx.
from d5fc5ca Improve 'last_write_time(...)' accuracy and detect overflow errors.
new ff4f298 Mark libc++ internal globals with _LIBCPP_SAFE_STATIC.
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:
src/algorithm.cpp | 2 +-
src/exception.cpp | 4 ++--
src/memory.cpp | 16 +++++++---------
src/mutex.cpp | 4 ++--
4 files changed, 12 insertions(+), 14 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 2789368 [RS6000] .gnu.attributes Tag_GNU_Power_ABI_FP
new bb3742b Disable .gnu.attributes tags in compatibility-ldbl.o
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:
libstdc++-v3/ChangeLog | 18 ++++++++++++++++++
libstdc++-v3/Makefile.in | 1 +
libstdc++-v3/configure | 25 ++++++++++++++++---------
libstdc++-v3/configure.ac | 6 ++++++
libstdc++-v3/doc/Makefile.in | 1 +
libstdc++-v3/include/Makefile.in | 1 +
libstdc++-v3/libsupc++/Makefile.in | 1 +
libstdc++-v3/po/Makefile.in | 1 +
libstdc++-v3/python/Makefile.in | 1 +
libstdc++-v3/src/Makefile.am | 4 ++--
libstdc++-v3/src/Makefile.in | 5 +++--
libstdc++-v3/src/c++11/Makefile.in | 1 +
libstdc++-v3/src/c++98/Makefile.in | 1 +
libstdc++-v3/src/filesystem/Makefile.in | 1 +
libstdc++-v3/testsuite/Makefile.in | 1 +
15 files changed, 55 insertions(+), 13 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 9e9fb49 PR target/77756 * config/i386/cpuid.h (__get_cpuid): Handle [...]
new bd94fe4 * gimple-ssa-sprintf.c (pass_sprintf_length::gate): Use x > [...]
new 2789368 [RS6000] .gnu.attributes Tag_GNU_Power_ABI_FP
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/ChangeLog | 28 +++++++++++++++
gcc/config.in | 6 ++++
gcc/config/rs6000/rs6000.c | 87 ++++++++++++++++++++++++++++++++++-----------
gcc/config/rs6000/sysv4.opt | 4 +++
gcc/configure | 52 +++++++++++++++++++++++++++
gcc/configure.ac | 45 +++++++++++++++++++++++
gcc/doc/invoke.texi | 9 +++++
gcc/gimple-ssa-sprintf.c | 17 ++++-----
8 files changed, 220 insertions(+), 28 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 4435e1c Small improvements to the remote protocol manual
new 6d61dee Fix PR 20345 - call_function_by_hand_dummy: Assertion `tp->th [...]
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 | 5 +++
gdb/infcall.c | 6 +++
gdb/testsuite/ChangeLog | 5 +++
.../infcall-input.c} | 12 ++++++
.../gdb.base/{gdb1821.exp => infcall-input.exp} | 46 +++++++++++++++-------
5 files changed, 60 insertions(+), 14 deletions(-)
copy gdb/testsuite/{gdb.server/connect-with-no-symbol-file.c => gdb.base/infcall-i [...]
copy gdb/testsuite/gdb.base/{gdb1821.exp => infcall-input.exp} (51%)
--
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-7.12-branch
in repository binutils-gdb.
from 5324ac4 Automatic date update in version.in
new 629ad95 Fix PR 20345 - call_function_by_hand_dummy: Assertion `tp->th [...]
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 | 5 +++
gdb/infcall.c | 6 +++
gdb/testsuite/ChangeLog | 5 +++
.../dwp-sepdebug.c => gdb.base/infcall-input.c} | 12 ++++++
.../gdb.base/{gdb1821.exp => infcall-input.exp} | 46 +++++++++++++++-------
5 files changed, 60 insertions(+), 14 deletions(-)
copy gdb/testsuite/{gdb.dwarf2/dwp-sepdebug.c => gdb.base/infcall-input.c} (80%)
copy gdb/testsuite/gdb.base/{gdb1821.exp => infcall-input.exp} (51%)
--
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 451a26b [sancov] a simple .symcov coverage report server
new 07aadc2 Remove dead code from LiveDebugVariables.cpp (NFC)
new dc72d13 [sancov] introducing symbolized coverage files (.symcov)
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/DebugInfo/DIContext.h | 4 +
lib/CodeGen/LiveDebugVariables.cpp | 54 +-
.../tools/sancov/Inputs/test-linux_x86_64.0.symcov | 25 +
.../tools/sancov/Inputs/test-linux_x86_64.1.symcov | 25 +
test/tools/sancov/html-report.test | 6 -
test/tools/sancov/merge.test | 64 +
test/tools/sancov/symbolize.test | 29 +
tools/sancov/sancov.cc | 1366 +++++++++-----------
8 files changed, 783 insertions(+), 790 deletions(-)
create mode 100644 test/tools/sancov/Inputs/test-linux_x86_64.0.symcov
create mode 100644 test/tools/sancov/Inputs/test-linux_x86_64.1.symcov
delete mode 100644 test/tools/sancov/html-report.test
create mode 100644 test/tools/sancov/merge.test
create mode 100644 test/tools/sancov/symbolize.test
--
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-6-branch
in repository gcc.
from d90efe6 Backport from trunk of the following PR's:
new 9878f2b 2016-09-28 Bill Schmidt <wschmidt(a)linux.vnet.ibm.com> [...]
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/ira-lives.c | 2 +-
2 files changed, 12 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 gcc-5-branch
in repository gcc.
from 1710bc2 Correct libgcc complex multiply excess precision handling (PR [...]
new d00bdba 2016-09-28 Bill Schmidt <wschmidt(a)linux.vnet.ibm.com> [...]
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 | 10 ++++++++++
gcc/ira-lives.c | 2 +-
2 files changed, 11 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 master
in repository llvm.
from a2d2551 Next set of additional error checks for invalid Mach-O files [...]
new 451a26b [sancov] a simple .symcov coverage report server
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:
tools/sancov/symcov-report-server.py | 203 +++++++++++++++++++++++++++++++++++
1 file changed, 203 insertions(+)
create mode 100755 tools/sancov/symcov-report-server.py
--
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 94d9ba6 PR middle-end/77721 - -Wformat-length not uses arg range for [...]
new 9e9fb49 PR target/77756 * config/i386/cpuid.h (__get_cpuid): Handle [...]
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 | 63 ++++++++++++++-------------------
gcc/config/i386/cpuid.h | 12 ++++++-
gcc/testsuite/ChangeLog | 51 +++++++++++---------------
gcc/testsuite/gcc.target/i386/pr77756.c | 22 ++++++++++++
4 files changed, 81 insertions(+), 67 deletions(-)
create mode 100644 gcc/testsuite/gcc.target/i386/pr77756.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 b393d82 Refactor the ProfileSummaryInfo to use doInitialization and d [...]
new a2d2551 Next set of additional error checks for invalid Mach-O files [...]
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/Object/MachOObjectFile.cpp | 32 +++++++++++++++++++++
.../Object/Inputs/macho-invalid-vers-more-than-one | Bin 0 -> 60 bytes
test/Object/Inputs/macho-invalid-vers-small | Bin 0 -> 48 bytes
test/Object/macho-invalid.test | 6 ++++
4 files changed, 38 insertions(+)
create mode 100644 test/Object/Inputs/macho-invalid-vers-more-than-one
create mode 100644 test/Object/Inputs/macho-invalid-vers-small
--
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 libcxx.
from c3e00f6 Revert r282483 - [cmake] Add linker option "-Wl,-z,defs" in s [...]
new d5fc5ca Improve 'last_write_time(...)' accuracy and detect overflow errors.
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:
src/experimental/filesystem/operations.cpp | 40 ++++++++++++++++++++++++++----
1 file changed, 35 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 lldb.
from 418660c use assertEquals in TestSBTypeClassMembers
new d8c5b32 Add the ability for the task port to change when a process execs.
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:
.../lldbsuite/test/functionalities/exec/TestExec.py | 1 -
tools/debugserver/source/MacOSX/MachException.cpp | 21 ++++++++++++++++++---
tools/debugserver/source/MacOSX/MachTask.h | 1 +
tools/debugserver/source/MacOSX/MachTask.mm | 15 +++++++++++++++
4 files changed, 34 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 3a2044d Add a couple more tentative names for upcoming SD-6 feature c [...]
new 827cdbc cxx_status: use HTML5 details/summary elements to hide implem [...]
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:
www/cxx_status.html | 66 ++++++++++++++++++++++++++++++++++-------------------
1 file changed, 43 insertions(+), 23 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 lld.
from 6447804 Sort headers. NFC.
new 6313233 Warn on empty archive files.
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:
ELF/InputFiles.cpp | 11 ++++++++++-
test/ELF/empty-archive.s | 4 +++-
2 files changed, 13 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 glibc.
from e83be73 posix: Fix open file action for posix_spawn on Linux
new b59ad2d Fix iszero for excess precision.
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 +++++
math/Makefile | 4 +-
math/math.h | 2 +-
...{test-powl.c => test-iszero-excess-precision.c} | 44 ++++++++++------------
4 files changed, 33 insertions(+), 26 deletions(-)
copy math/{test-powl.c => test-iszero-excess-precision.c} (64%)
--
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 a377afa IfConversion: Add implicit uses for redefined regs with live [...]
new b393d82 Refactor the ProfileSummaryInfo to use doInitialization and d [...]
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/Analysis/ProfileSummaryInfo.h | 13 ++++++++-----
lib/Analysis/ModuleSummaryAnalysis.cpp | 2 +-
lib/Analysis/ProfileSummaryInfo.cpp | 29 ++++++++++++-----------------
lib/LTO/ThinLTOCodeGenerator.cpp | 2 +-
lib/Transforms/IPO/Inliner.cpp | 2 +-
5 files changed, 23 insertions(+), 25 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 8d3bd94 Minor corrections to scripts/check-installed-headers.sh.
new 4b4d405 linux: spawni.c: simplify error reporting to parent
new e83be73 posix: Fix open file action for posix_spawn on Linux
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:
ChangeLog | 12 +++
posix/Makefile | 2 +-
posix/tst-spawn3.c | 189 +++++++++++++++++++++++++++++++++++++++
sysdeps/unix/sysv/linux/spawni.c | 79 +++++++---------
4 files changed, 235 insertions(+), 47 deletions(-)
create mode 100644 posix/tst-spawn3.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 clang.
from e8cee8f P0095R3: Implement the latest published revision of SD-6 (C++ [...]
new 3a2044d Add a couple more tentative names for upcoming SD-6 feature c [...]
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/Frontend/InitPreprocessor.cpp | 4 ++++
test/Lexer/cxx-features.cpp | 21 +++++++++++++++++++++
www/cxx_status.html | 4 ++--
3 files changed, 27 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 lldb.
from 5cc0f41 zorg Xcode python test suite target arch update
new 418660c use assertEquals in TestSBTypeClassMembers
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:
.../class_members/TestSBTypeClassMembers.py | 59 ++++++++++++----------
1 file changed, 33 insertions(+), 26 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 252e09f P0096R2: Implement more recent revision of SD-6 (C++ feature [...]
new e8cee8f P0095R3: Implement the latest published revision of SD-6 (C++ [...]
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/Frontend/InitPreprocessor.cpp | 8 ++++++--
test/Lexer/cxx-features.cpp | 22 +++++++++++++++++++---
www/cxx_status.html | 2 +-
3 files changed, 26 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 22cd98f [InstCombine] update to use FileCheck
new f9bcd7b [AMDGPU] Promote uniform i16 ops to i32 ops for targets that [...]
new a377afa IfConversion: Add implicit uses for redefined regs with live [...]
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:
lib/CodeGen/IfConversion.cpp | 11 +
lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp | 237 +++++-
lib/Target/AMDGPU/SIISelLowering.cpp | 4 +
...genprepare.ll => amdgpu-codegenprepare-fdiv.ll} | 0
.../AMDGPU/amdgpu-codegenprepare-i16-to-i32.ll | 856 +++++++++++++++++++++
test/CodeGen/AMDGPU/ctlz.ll | 158 ++--
.../AMDGPU/{mul_uint24.ll => mul_uint24-amdgcn.ll} | 151 ++--
test/CodeGen/AMDGPU/mul_uint24-r600.ll | 83 ++
test/CodeGen/Hexagon/ifcvt-live-subreg.mir | 50 ++
9 files changed, 1400 insertions(+), 150 deletions(-)
rename test/CodeGen/AMDGPU/{amdgpu-codegenprepare.ll => amdgpu-codegenprepare-fdiv [...]
create mode 100644 test/CodeGen/AMDGPU/amdgpu-codegenprepare-i16-to-i32.ll
rename test/CodeGen/AMDGPU/{mul_uint24.ll => mul_uint24-amdgcn.ll} (52%)
create mode 100644 test/CodeGen/AMDGPU/mul_uint24-r600.ll
create mode 100644 test/CodeGen/Hexagon/ifcvt-live-subreg.mir
--
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-tools-extra.
from b186741 Workaround ASTMatcher crashes. Added some more test cases.
new 14b005f [clang-tidy] fix false-positive for cppcoreguidelines-pro-typ [...]
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:
clang-tidy/utils/TypeTraits.cpp | 4 +++-
test/clang-tidy/cppcoreguidelines-pro-type-member-init.cpp | 10 ++++++++++
2 files changed, 13 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 master
in repository zorg.
from 1bf3519 [libFuzzer] run re2-2014-12-09 test on the bot, 2-nd attempt
new 641a337 run python tests against i386 and x86_64 inferiors
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:
zorg/jenkins/build.py | 22 ++++++++++++++++++++--
1 file changed, 20 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 gcc.
from 3c57b79 * gimple-ssa-sprintf.c: Fix comment formatting. (format_int [...]
new 94d9ba6 PR middle-end/77721 - -Wformat-length not uses arg range for [...]
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/testsuite/ChangeLog | 5 ++
.../gcc.dg/tree-ssa/builtin-sprintf-warn-6.c | 92 ++++++++++++++++++++++
2 files changed, 97 insertions(+)
create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/builtin-sprintf-warn-6.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 clang.
from d024a29 Long-overdue update to cxx_status: C++14 is no longer "upcoming".
new 252e09f P0096R2: Implement more recent revision of SD-6 (C++ feature [...]
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/Frontend/InitPreprocessor.cpp | 17 +++++++--
test/Lexer/cxx-features.cpp | 75 ++++++++++++++++++++++++++++++++-------
www/cxx_status.html | 7 +++-
3 files changed, 84 insertions(+), 15 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 2a2770c PR c++/77467 * constexpr.c (enum constexpr_switch_state): N [...]
new 5feeeb0 2016-09-28 Jerry DeLisle <jvdelisle(a)gcc.gnu.org>
new d23296d 2016-09-28 Jerry DeLisle <jvdelisle(a)gcc.gnu.org>
new 3c57b79 * gimple-ssa-sprintf.c: Fix comment formatting. (format_int [...]
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:
gcc/ChangeLog | 9 +++++++
gcc/gimple-ssa-sprintf.c | 42 +++++++++++++-------------------
gcc/testsuite/ChangeLog | 5 ++++
gcc/testsuite/gfortran.dg/inquire_17.f90 | 10 ++++++++
libgfortran/ChangeLog | 6 +++++
libgfortran/io/transfer.c | 7 +++---
6 files changed, 51 insertions(+), 28 deletions(-)
create mode 100644 gcc/testsuite/gfortran.dg/inquire_17.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 master
in repository clang.
from 7da28ae Re-commit r282556, reverted in r282564, with a fix to CallArg [...]
new d024a29 Long-overdue update to cxx_status: C++14 is no longer "upcoming".
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:
www/cxx_status.html | 26 ++++++++++----------------
1 file changed, 10 insertions(+), 16 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 4785ab7 * config/i386/cpuinfo.c (__get_cpuid_output): Remove. (__cp [...]
new 2a2770c PR c++/77467 * constexpr.c (enum constexpr_switch_state): N [...]
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/cp/ChangeLog | 23 +++++
gcc/cp/constexpr.c | 116 ++++++++++++++++++------
gcc/testsuite/ChangeLog | 5 ++
gcc/testsuite/g++.dg/cpp1y/constexpr-77467.C | 128 +++++++++++++++++++++++++++
4 files changed, 243 insertions(+), 29 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/cpp1y/constexpr-77467.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 27e0165 Fix the bug introduced in r282616.
new 22cd98f [InstCombine] update to use FileCheck
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:
test/Transforms/InstCombine/bit-checks.ll | 673 ++++++++++++++++++------------
1 file changed, 410 insertions(+), 263 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 6a96fd6 [CUDA] Added support for CUDA-8
new 7da28ae Re-commit r282556, reverted in r282564, with a fix to CallArg [...]
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/AST/ExprCXX.h | 10 ++
lib/CodeGen/CGCall.cpp | 8 +-
lib/CodeGen/CGCall.h | 14 ++-
lib/CodeGen/CGExpr.cpp | 11 +-
lib/CodeGen/CGExprCXX.cpp | 44 +++++--
lib/CodeGen/CodeGenFunction.h | 12 +-
lib/CodeGen/ItaniumCXXABI.cpp | 5 +-
test/CodeGenCXX/cxx1z-eval-order.cpp | 140 ++++++++++++++++------
test/CodeGenObjCXX/property-object-reference-2.mm | 2 +-
www/cxx_status.html | 11 +-
10 files changed, 193 insertions(+), 64 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 bc9cf99 Fix the bug when -compile-twice is specified, the PSI will be [...]
new 27e0165 Fix the bug introduced in r282616.
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/LTO/ThinLTOCodeGenerator.cpp | 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 compiler-rt.
from e398a5c [compiler-rt] Fix interception of multiple defined symbols.
new 5969de9 Add build script for symbolizer which can be linked into inst [...]
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:
.../symbolizer/sanitizer_symbolize.cc | 72 ++++++++
.../symbolizer/sanitizer_wrappers.cc | 182 ++++++++++++++++++++
.../symbolizer/scripts/build_symbolizer.sh | 183 +++++++++++++++++++++
.../symbolizer/scripts/global_symbols.txt | 130 +++++++++++++++
.../TestCases/Linux/print_memory_profile_test.cc | 24 +--
5 files changed, 581 insertions(+), 10 deletions(-)
create mode 100644 lib/sanitizer_common/symbolizer/sanitizer_symbolize.cc
create mode 100644 lib/sanitizer_common/symbolizer/sanitizer_wrappers.cc
create mode 100755 lib/sanitizer_common/symbolizer/scripts/build_symbolizer.sh
create mode 100644 lib/sanitizer_common/symbolizer/scripts/global_symbols.txt
--
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 release_39
in repository llvm.
from 69e5622 [3.9.1] Merging r281319 [ARM] Support ldr.w in pseudo instruc [...]
new 2eb3d6d Cherry pick r281957 (see http://llvm.org/PR30463)
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/BranchFolding.cpp | 19 ++++++++++++++-----
test/CodeGen/X86/branchfolding-undef.mir | 29 +++++++++++++++++++++++++++++
2 files changed, 43 insertions(+), 5 deletions(-)
create mode 100644 test/CodeGen/X86/branchfolding-undef.mir
--
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 77f586a [X86][AVX] Add test showing that VBROADCAST loads don't corre [...]
new bc9cf99 Fix the bug when -compile-twice is specified, the PSI will be [...]
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/Analysis/ProfileSummaryInfo.h | 6 ++++--
lib/Analysis/ProfileSummaryInfo.cpp | 15 ++++++++++++---
2 files changed, 16 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 gcc.
from 0735186 * include/std/chrono (system_clock): Fix typo in comment.
new 4785ab7 * config/i386/cpuinfo.c (__get_cpuid_output): Remove. (__cp [...]
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:
libgcc/ChangeLog | 5 +++++
libgcc/config/i386/cpuinfo.c | 20 +++-----------------
2 files changed, 8 insertions(+), 17 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.