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.