This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/pie/static
in repository glibc.
discards 433a52a4b7 Don't use hidden visibility in libc.a with PIE on i386
discards 26d7bbd7b7 Add --enable-static-pie to build static PIE
adds ebd6f0076a Remove cancellation support for syscall generation
adds 3d7b66f66c Fix the C++ version of issignaling when __NO_LONG_DOUBLE_MAT [...]
adds bba5c93094 Remove powerpc32 sqrt wrappers.
adds 23761119fe Clean up bits/math-finite.h for aliasing types.
adds a6ccdb0839 Use __HAVE_DISTINCT_FLOAT128 in tgmath.h.
adds 39e7a5a668 [AArch64] Fix elf_greg_t on ILP32
adds 7ab70c98e8 x86: Remove assembly versions of index_cpu_*/index_arch_*
new 8a057d6f04 Add --enable-static-pie to build static PIE
new 213129abee Don't use hidden visibility in libc.a with PIE on i386
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 (433a52a4b7)
\
N -- N -- N refs/heads/hjl/pie/static (213129abee)
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 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 | 232 +++++++++++++++++++
Makeconfig | 2 +-
configure | 31 ---
configure.ac | 19 --
math/bits/math-finite.h | 23 +-
math/math.h | 34 ++-
math/tgmath.h | 2 +-
.../powerpc32/power4/fpu/multiarch/Makefile | 2 -
.../power4/fpu/multiarch/w_sqrt_compat-power5.S | 31 ---
.../power4/fpu/multiarch/w_sqrt_compat-ppc32.S | 31 ---
.../powerpc32/power4/fpu/multiarch/w_sqrt_compat.c | 40 ----
.../power4/fpu/multiarch/w_sqrtf_compat-power5.S | 26 ---
.../power4/fpu/multiarch/w_sqrtf_compat-ppc32.S | 26 ---
.../power4/fpu/multiarch/w_sqrtf_compat.c | 32 ---
.../powerpc/powerpc32/power4/fpu/w_sqrt_compat.S | 109 ---------
.../powerpc/powerpc32/power4/fpu/w_sqrtf_compat.S | 101 ---------
.../powerpc/powerpc32/power5/fpu/w_sqrt_compat.S | 107 ---------
.../powerpc/powerpc32/power5/fpu/w_sqrtf_compat.S | 99 --------
sysdeps/unix/make-syscalls.sh | 4 -
sysdeps/unix/syscall-template.S | 12 +-
sysdeps/unix/sysv/linux/aarch64/sys/procfs.h | 3 +-
sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h | 97 +-------
sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h | 139 +-----------
sysdeps/unix/sysv/linux/arm/sysdep-cancel.h | 207 +----------------
sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h | 235 +------------------
sysdeps/unix/sysv/linux/i386/sysdep-cancel.h | 129 +----------
sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h | 203 +----------------
sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h | 115 +---------
sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h | 126 +----------
.../unix/sysv/linux/mips/mips64/sysdep-cancel.h | 249 ---------------------
sysdeps/unix/sysv/linux/mips/sysdep-cancel.h | 166 +-------------
sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h | 117 +---------
.../sysv/linux/powerpc/powerpc32/sysdep-cancel.h | 118 ----------
.../sysv/linux/powerpc/powerpc64/sysdep-cancel.h | 147 ------------
.../sysv/linux/powerpc/sysdep-cancel.h} | 20 +-
.../unix/sysv/linux/s390/s390-32/sysdep-cancel.h | 115 +---------
.../unix/sysv/linux/s390/s390-64/sysdep-cancel.h | 117 +---------
sysdeps/unix/sysv/linux/sh/sysdep-cancel.h | 146 +-----------
.../unix/sysv/linux/sparc/sparc32/sysdep-cancel.h | 111 ---------
.../unix/sysv/linux/sparc/sparc64/sysdep-cancel.h | 109 ---------
.../sysv/linux/sparc/sysdep-cancel.h} | 26 ++-
sysdeps/unix/sysv/linux/tile/sysdep-cancel.h | 130 +----------
sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h | 74 +-----
sysdeps/x86/cpu-features.h | 43 +---
sysdeps/x86_64/configure | 8 +-
sysdeps/x86_64/configure.ac | 8 +-
46 files changed, 404 insertions(+), 3517 deletions(-)
delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat-power5.S
delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat-ppc32.S
delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat.c
delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat-power5.S
delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat-ppc32.S
delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat.c
delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt_compat.S
delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf_compat.S
delete mode 100644 sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt_compat.S
delete mode 100644 sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf_compat.S
delete mode 100644 sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h
delete mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h
delete mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h
copy sysdeps/{powerpc/powerpc64/fpu/multiarch/s_cosf-ppc64.c => unix/sysv/linux/po [...]
delete mode 100644 sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h
delete mode 100644 sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h
copy sysdeps/{powerpc/powerpc64/fpu/multiarch/s_llroundf-ppc64.S => unix/sysv/linu [...]
--
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 66e630882c [Frontend] Fix printing policy for AST context loaded from file
new f53f0e7b93 [NFC] Remove a cstyle cast and replace some uses of Decl wit [...]
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/Parse/Parser.h | 4 ++--
include/clang/Sema/Sema.h | 2 +-
lib/Parse/ParseTemplate.cpp | 16 ++++++++--------
lib/Sema/SemaTemplate.cpp | 4 ++--
4 files changed, 13 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 clang.
from 6f13534410 [ObjC] Add a -Wobjc-messaging-id warning
new 66e630882c [Frontend] Fix printing policy for AST context loaded from file
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/ASTUnit.cpp | 3 ++
unittests/Frontend/ASTUnitTest.cpp | 87 ++++++++++++++++++++++++++++++++++++++
unittests/Frontend/CMakeLists.txt | 1 +
3 files changed, 91 insertions(+)
create mode 100644 unittests/Frontend/ASTUnitTest.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 glibc.
from 39e7a5a668 [AArch64] Fix elf_greg_t on ILP32
new 7ab70c98e8 x86: Remove assembly versions of index_cpu_*/index_arch_*
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 | 5 +++++
sysdeps/x86/cpu-features.h | 43 +------------------------------------------
2 files changed, 6 insertions(+), 42 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 9fe691ec5 Add support for the DWP debug info format
new 91e77b77a Add the DWARF DWP files to the Xcode project.
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:
lldb.xcodeproj/project.pbxproj | 16 ++++++++++++++--
1 file changed, 14 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 a6ccdb0839 Use __HAVE_DISTINCT_FLOAT128 in tgmath.h.
new 39e7a5a668 [AArch64] Fix elf_greg_t on ILP32
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 | 5 +++++
sysdeps/unix/sysv/linux/aarch64/sys/procfs.h | 3 ++-
2 files changed, 7 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 f360477df5d [LoopInterchange] Skip zext instructions when looking for i [...]
new 3ec9576f37f [InstCombine] Add tests to show missed opportunities to 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:
test/Transforms/InstCombine/bit-checks.ll | 152 ++++++++++++++++++++++++++++++
1 file changed, 152 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 lnt.
from 4844de9 Add ts_data() to some pages that missed it
new ef0dd7c [LNT] Remove reference of lnt createdb from docs.
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/tools.rst | 3 ---
1 file changed, 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 glibc.
from 23761119fe Clean up bits/math-finite.h for aliasing types.
new a6ccdb0839 Use __HAVE_DISTINCT_FLOAT128 in tgmath.h.
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 | 3 +++
math/tgmath.h | 2 +-
2 files changed, 4 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 7cd5c438544 Fix unused-lambda-capture warning by using default capture-by-ref
new f360477df5d [LoopInterchange] Skip zext instructions when looking for i [...]
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/LoopInterchange.cpp | 3 ++-
...cies.ll => interchange-insts-between-indvar.ll} | 26 +++++++++-------------
2 files changed, 12 insertions(+), 17 deletions(-)
copy test/Transforms/LoopInterchange/{interchange-output-dependencies.ll => interc [...]
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.