This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 64924d1d4d8 [C++ PATCH] Kill IDENTIFIER_GLOBAL_VALUE
new a94975e5731 Re: [PATCH] C++ warning on vexing parse
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 | 4 +++
gcc/cp/ChangeLog | 6 ++++
gcc/cp/cp-tree.h | 4 +++
gcc/cp/decl.c | 7 ++++
gcc/cp/parser.c | 23 ++++++++++++
gcc/doc/invoke.texi | 11 ++++++
gcc/testsuite/ChangeLog | 4 +++
gcc/testsuite/g++.dg/warn/mvp.C | 78 +++++++++++++++++++++++++++++++++++++++++
8 files changed, 137 insertions(+)
create mode 100644 gcc/testsuite/g++.dg/warn/mvp.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 0e8a63e67fb [LV] Fix PR34711 - widen instruction ranges when sinking casts
new 3c69ee55401 [TablgeGen] : Tidy up CodeGenSchedule. 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:
utils/TableGen/CodeGenSchedule.cpp | 46 +++++++++++++++++---------------------
1 file changed, 21 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 azanella/sparc64-ifunc
in repository glibc.
discards 167fa6946b sparc: Implement memset/bzero ifunc selection in C
discards bd610f93f9 sparc: Implement memcpy/mempcpy ifunc selection in C
new 5f0dc676fa ARM ifunc implementation
new fc65b1283f sparc: Implement memcpy/mempcpy ifunc selection in C
new 5175c26e40 sparc: Implement memset/bzero ifunc selection in C
new 80dd23be4b sparc: Use default memcpy for rtld objects
new 0b5e4b52eb sparc: Use default memset for rtld objects
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 (167fa6946b)
\
N -- N -- N refs/heads/azanella/sparc64-ifunc (0b5e4b52eb)
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 5 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 | 36 ++++++++--
sysdeps/arm/arm-ifunc.h | 22 +++++++
sysdeps/arm/armv7/multiarch/Makefile | 6 +-
sysdeps/arm/armv7/multiarch/ifunc-memcpy.h | 40 ++++++++++++
sysdeps/arm/armv7/multiarch/init-arch.h | 21 ++++++
sysdeps/arm/armv7/multiarch/memcpy.S | 76 ----------------------
sysdeps/arm/armv7/multiarch/memcpy.c | 41 ++++++++++++
sysdeps/arm/armv7/multiarch/memcpy_arm.S | 6 ++
sysdeps/arm/armv7/multiarch/rtld-memcpy.S | 1 +
sysdeps/generic/symbol-hacks.h | 3 +-
sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile | 3 +-
.../sparc32/sparcv9/multiarch/memcpy-ultra1.S | 35 ++++++++++
sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy.S | 4 --
sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy.c | 1 +
sysdeps/sparc/sparc32/sparcv9/multiarch/mempcpy.c | 1 +
.../sparc32/sparcv9/multiarch/memset-ultra1.S | 33 ++++++++++
sysdeps/sparc/sparc32/sparcv9/multiarch/memset.S | 4 --
sysdeps/sparc/sparc32/sparcv9/multiarch/memset.c | 1 +
.../sparc/sparc32/sparcv9/multiarch/rtld-memcpy.S | 1 +
.../sparc/sparc32/sparcv9/multiarch/rtld-memcpy.c | 1 -
.../sparcv9}/multiarch/rtld-mempcpy.S | 0
.../sparc/sparc32/sparcv9/multiarch/rtld-memset.S | 1 +
.../sparc/sparc32/sparcv9/multiarch/rtld-memset.c | 1 -
sysdeps/sparc/sparc32/sparcv9/rtld-memcpy.c | 1 -
sysdeps/sparc/sparc32/sparcv9/rtld-memset.c | 1 -
sysdeps/sparc/sparc64/multiarch/rtld-memcpy.c | 1 -
sysdeps/sparc/sparc64/multiarch/rtld-memset.c | 1 -
sysdeps/sparc/sparc64/rtld-memcpy.c | 3 -
sysdeps/sparc/sparc64/rtld-memset.c | 1 -
29 files changed, 245 insertions(+), 101 deletions(-)
create mode 100644 sysdeps/arm/arm-ifunc.h
create mode 100644 sysdeps/arm/armv7/multiarch/ifunc-memcpy.h
create mode 100644 sysdeps/arm/armv7/multiarch/init-arch.h
delete mode 100644 sysdeps/arm/armv7/multiarch/memcpy.S
create mode 100644 sysdeps/arm/armv7/multiarch/memcpy.c
create mode 100644 sysdeps/arm/armv7/multiarch/memcpy_arm.S
create mode 100644 sysdeps/arm/armv7/multiarch/rtld-memcpy.S
create mode 100644 sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-ultra1.S
delete mode 100644 sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy.S
create mode 100644 sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy.c
create mode 100644 sysdeps/sparc/sparc32/sparcv9/multiarch/mempcpy.c
create mode 100644 sysdeps/sparc/sparc32/sparcv9/multiarch/memset-ultra1.S
delete mode 100644 sysdeps/sparc/sparc32/sparcv9/multiarch/memset.S
create mode 100644 sysdeps/sparc/sparc32/sparcv9/multiarch/memset.c
create mode 100644 sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memcpy.S
delete mode 100644 sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memcpy.c
copy sysdeps/sparc/{sparc64 => sparc32/sparcv9}/multiarch/rtld-mempcpy.S (100%)
create mode 100644 sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memset.S
delete mode 100644 sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memset.c
delete mode 100644 sysdeps/sparc/sparc32/sparcv9/rtld-memcpy.c
delete mode 100644 sysdeps/sparc/sparc32/sparcv9/rtld-memset.c
delete mode 100644 sysdeps/sparc/sparc64/multiarch/rtld-memcpy.c
delete mode 100644 sysdeps/sparc/sparc64/multiarch/rtld-memset.c
delete mode 100644 sysdeps/sparc/sparc64/rtld-memcpy.c
delete mode 100644 sysdeps/sparc/sparc64/rtld-memset.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 binutils-gdb.
from 94750c06e8 Updated Turkish translation for the ld sub-directory.
new 64f7152491 Update the Hungarian translation in the gprof directory.
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:
gprof/ChangeLog | 4 ++
gprof/po/hu.po | 187 +++++++++++++++++++++++++++++---------------------------
2 files changed, 100 insertions(+), 91 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 hjl/pie/static
in repository glibc.
discards fdcd654de6 Add --enable-static-pie to build-many-glibcs.py
discards a305cebf49 sparc: Check PIC instead of SHARED in start.S
discards 998b75b5a0 microblaze: Check PIC instead of SHARED in start.S
discards f1b8027262 m68k: Check PIC instead of SHARED in start.S
discards f4a80fea9d hppa: Check PIC instead of SHARED in start.S
discards de133a5edb aarch64: Check PIC instead of SHARED in start.S
discards 72eaf5f48e sh: Update elf_machine_load_address for static PIE
discards 4e43e61ddb s390: Update elf_machine_load_address for static PIE
discards 7f3e02e5cd m68k: Update elf_machine_load_address for static PIE
discards bd9e7ad551 aarch64: Update elf_machine_load_address for static PIE
discards bcfcd615fe Add --enable-static-pie configure option to build static PIE [...]
new 63696fa1d8 Add --enable-static-pie configure option to build static PIE [...]
new 4edf60fa32 aarch64: Update elf_machine_load_address for static PIE
new db977155c5 m68k: Update elf_machine_load_address for static PIE
new 1b8670104f s390: Update elf_machine_load_address for static PIE
new 938f1fb2c5 sh: Update elf_machine_load_address for static PIE
new ffc326a9bb aarch64: Check PIC instead of SHARED in start.S
new d32b555065 hppa: Check PIC instead of SHARED in start.S
new b0286374c1 m68k: Check PIC instead of SHARED in start.S
new 3969f58b55 microblaze: Check PIC instead of SHARED in start.S
new 3ee7525f8e sparc: Check PIC instead of SHARED in start.S
new f587daf251 Add --enable-static-pie to build-many-glibcs.py
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 (fdcd654de6)
\
N -- N -- N refs/heads/hjl/pie/static (f587daf251)
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 11 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:
csu/Makefile | 16 ++++++++--------
elf/dl-reloc-static-pie.c | 1 +
2 files changed, 9 insertions(+), 8 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 ea8fae9fe7 Fix strip so that is accepts -M as an abbreviation for --mer [...]
new 007873f54e tile: Dump dynamic relocation info to the map file
new 94750c06e8 Updated Turkish translation for the ld sub-directory.
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:
bfd/ChangeLog | 8 +
bfd/elf32-tilepro.c | 10 +-
bfd/elfxx-tilegx.c | 10 +-
ld/ChangeLog | 4 +
ld/po/tr.po | 2163 +++++++++++++++++++++++++++++++++++----------------
5 files changed, 1530 insertions(+), 665 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 0c25125780 tst-gmon: Build with -fno-omit-frame-pointer
new 91e7cf982d abort: Do not flush stdio streams [BZ #15436]
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 | 7 +++++++
NEWS | 5 +++++
stdlib/abort.c | 29 +++++------------------------
3 files changed, 17 insertions(+), 24 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 f9b24fad7 newlib/libm/complex/cargl.c change imag() real() to cimagl() [...]
new 4fef7312b RTEMS: Optimize pthread_once_t
new 8253c240c RTEMS: Make sem_t self-contained
new 9187bb23a RTEMS: Make pthread_barrier_t self-contained
new d902eef09 RTEMS: Make pthread_rwlock_t self-contained
new 55c5dda9b RTEMS: Make pthread_cond_t self-contained
new 3a79700c2 RTEMS: Make pthread_mutex_t self-contained
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:
newlib/libc/sys/rtems/include/machine/_threads.h | 5 +-
newlib/libc/sys/rtems/include/semaphore.h | 8 ++-
newlib/libc/sys/rtems/include/sys/_pthreadtypes.h | 63 +++++++++++++++++++----
3 files changed, 60 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 llvm.
from 27b9512501c [mips] Place certain 64 bit FPU instructions in their own d [...]
new f7ceddc7e61 Re-land "[MergeICmps] Disable mergeicmps if the target does [...]
new 0e8a63e67fb [LV] Fix PR34711 - widen instruction ranges when sinking casts
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/Transforms/Scalar/MergeICmps.cpp | 35 +++++++---
lib/Transforms/Vectorize/LoopVectorize.cpp | 45 ++++++------
.../LoopVectorize/first-order-recurrence.ll | 49 +++++++++++++
.../MergeICmps}/X86/lit.local.cfg | 0
.../MergeICmps/{ => X86}/pair-int32-int32.ll | 60 ++++++++--------
.../MergeICmps/{ => X86}/tuple-four-int8.ll | 39 ++++++++---
test/Transforms/MergeICmps/X86/volatile.ll | 48 +++++++++++++
test/Transforms/MergeICmps/pair-int32-int32.ll | 81 ++++++++++++----------
test/Transforms/MergeICmps/volatile.ll | 30 --------
9 files changed, 249 insertions(+), 138 deletions(-)
copy test/{Analysis/CostModel => Transforms/MergeICmps}/X86/lit.local.cfg (100%)
copy test/Transforms/MergeICmps/{ => X86}/pair-int32-int32.ll (53%)
rename test/Transforms/MergeICmps/{ => X86}/tuple-four-int8.ll (57%)
create mode 100644 test/Transforms/MergeICmps/X86/volatile.ll
delete mode 100644 test/Transforms/MergeICmps/volatile.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 binutils-gdb.
from 5c144731ed Change readelf so that when --wide is active a relocation's [...]
new ea8fae9fe7 Fix strip so that is accepts -M as an abbreviation for --mer [...]
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:
binutils/ChangeLog | 6 ++++++
binutils/objcopy.c | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.