This is an automated email from the git hooks/post-receive script.
"Maxim Kuvyrkov pushed a change to branch new-flaky
in repository toolchain/jenkins-scripts.
at e17676c0 [WIP] Precommit support
No new revisions were added by this update.
--
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.
"Maxim Kuvyrkov pushed a change to branch precommit
in repository toolchain/jenkins-scripts.
discards 6554eb9c [WIP] Precommit support
new e17676c0 [WIP] Precommit support
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 (6554eb9c)
\
N -- N -- N refs/heads/precommit (e17676c0)
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 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:
round-robin.sh | 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 releases/gcc-13
in repository gcc.
from 8d80f399a8d Daily bump.
new 37abaffb933 libstdc++: Resolve -Wunused-variable warnings in stdx::simd [...]
new 0f9f9c0f79a libstdc++: Fix SFINAE for __is_intrinsic_type on ARM
new a51ed14784d libstdc++: Add missing constexpr to simd_neon
new 0ed75609477 libstdc++: Fix type of first argument to vec_cntm call
new dad9abd7daa libstdc++: Add missing constexpr to simd
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:
libstdc++-v3/include/experimental/bits/simd.h | 204 +++++++++++++--------
.../include/experimental/bits/simd_builtin.h | 104 ++++++-----
.../include/experimental/bits/simd_fixed_size.h | 177 +++++++++---------
libstdc++-v3/include/experimental/bits/simd_neon.h | 76 ++++----
libstdc++-v3/include/experimental/bits/simd_ppc.h | 3 +-
.../include/experimental/bits/simd_scalar.h | 78 ++++----
libstdc++-v3/include/experimental/bits/simd_x86.h | 68 +++++--
.../experimental/simd/pr109261_constexpr_simd.cc | 92 ++++++++++
.../experimental/simd/tests/fpclassify.cc | 2 +
.../testsuite/experimental/simd/tests/frexp.cc | 6 +
.../simd/tests/ldexp_scalbn_scalbln_modf.cc | 4 +-
.../testsuite/experimental/simd/tests/logarithm.cc | 4 +-
.../experimental/simd/tests/trunc_ceil_floor.cc | 2 +
13 files changed, 516 insertions(+), 304 deletions(-)
create mode 100644 libstdc++-v3/testsuite/experimental/simd/pr109261_constexpr_simd.cc
--
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 releases/gcc-11
in repository gcc.
from 1d3103c1881 Daily bump.
new 2da5976cf68 libstdc++: Annotate most lambdas with always_inline
new a2a953d11e8 libstdc++: Fix simd build failure on clang
new 1c588b53920 libstdc++: Test that integral simd reductions are precise
new 74082488887 libstdc++: More efficient masked inc-/decrement implementation
new 0911926f37c libstdc++: Always-inline most of non-cmath fixed_size imple [...]
new 0cd11b5fd55 libstdc++: Fix formatting
new 9add8ab5ecf libstdc++: Fix simd compilation with Clang
new 31f957671a4 libstdc++: Fix operator% implementation for Clang
new 7bb263e8870 libstdc++: Add missing trait is_simd_flag_type
new a0b8b6bdd36 libstdc++: Resolve -Wunused-variable warnings in stdx::simd [...]
new f2299a4b276 libstdc++: Add missing constexpr to simd_neon
new ad27280442d libstdc++: Fix SFINAE for __is_intrinsic_type on ARM
new 0860e7d46f7 libstdc++: Fix type of first argument to vec_cntm call
new 7e289c12ce0 libstdc++: Add missing constexpr to simd
The 14 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/include/experimental/bits/simd.h | 931 +++++++++-------
.../include/experimental/bits/simd_builtin.h | 1145 ++++++++++----------
.../include/experimental/bits/simd_converter.h | 22 +-
.../include/experimental/bits/simd_detail.h | 6 +-
.../include/experimental/bits/simd_fixed_size.h | 659 +++++------
libstdc++-v3/include/experimental/bits/simd_math.h | 52 +-
libstdc++-v3/include/experimental/bits/simd_neon.h | 114 +-
libstdc++-v3/include/experimental/bits/simd_ppc.h | 6 +-
.../include/experimental/bits/simd_scalar.h | 356 +++---
libstdc++-v3/include/experimental/bits/simd_x86.h | 398 ++++---
.../experimental/simd/pr109261_constexpr_simd.cc | 91 ++
.../experimental/simd/tests/fpclassify.cc | 2 +
.../testsuite/experimental/simd/tests/frexp.cc | 6 +
.../simd/tests/ldexp_scalbn_scalbln_modf.cc | 4 +-
.../testsuite/experimental/simd/tests/logarithm.cc | 4 +-
.../experimental/simd/tests/reductions.cc | 3 +-
.../experimental/simd/tests/trunc_ceil_floor.cc | 2 +
17 files changed, 2167 insertions(+), 1634 deletions(-)
create mode 100644 libstdc++-v3/testsuite/experimental/simd/pr109261_constexpr_simd.cc
--
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.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gdb_build/master-arm
in repository toolchain/ci/base-artifacts.
from ad426cdaa02 11: onsuccess: #12: 1: [TCWG CI] https://ci.linaro.org/job/ [...]
new 8917c49ea72 12: onsuccess: #13: 1: [TCWG CI] https://ci.linaro.org/job/ [...]
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:
01-reset_artifacts/console.log.xz | Bin 2004 -> 2004 bytes
02-prepare_abe/console.log.xz | Bin 2512 -> 2456 bytes
04-build_abe-gdb/console.log.xz | Bin 47960 -> 47584 bytes
04-build_abe-gdb/make-gdb.log.xz | Bin 38396 -> 38348 bytes
05-check_regression/console.log.xz | Bin 460 -> 460 bytes
git/gdb_rev | 2 +-
manifest.sh | 8 ++++----
7 files changed, 5 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.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_eabi_cross_check_binutils/master-arm_eabi
in repository toolchain/ci/base-artifacts.
from 398cbdeddcc 15: onsuccess: #21: 0: [TCWG CI] https://ci.linaro.org/job/ [...]
new d8fe7a734f6 16: onsuccess: #22: 0: [TCWG CI] https://ci.linaro.org/job/ [...]
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:
00-sumfiles/binutils.log.xz | Bin 579952 -> 579416 bytes
00-sumfiles/gas.log.xz | Bin 100900 -> 100924 bytes
00-sumfiles/ld.log.xz | Bin 94632 -> 94608 bytes
01-reset_artifacts/console.log.xz | Bin 2220 -> 2220 bytes
02-prepare_abe/console.log.xz | Bin 2432 -> 2456 bytes
03-build_abe-binutils/console.log.xz | Bin 27688 -> 27100 bytes
03-build_abe-binutils/make-binutils.log.xz | Bin 17676 -> 17664 bytes
04-build_abe-stage1/console.log.xz | Bin 267308 -> 266032 bytes
04-build_abe-stage1/make-gcc-stage1.log.xz | Bin 252560 -> 252116 bytes
06-build_abe-newlib/console.log.xz | Bin 62188 -> 59220 bytes
06-build_abe-newlib/make-newlib.log.xz | Bin 22852 -> 20576 bytes
07-build_abe-stage2/console.log.xz | Bin 1058964 -> 1056292 bytes
07-build_abe-stage2/make-gcc-stage2.log.xz | Bin 900076 -> 897892 bytes
08-build_abe-gdb/console.log.xz | Bin 35160 -> 34424 bytes
08-build_abe-gdb/make-gdb.log.xz | Bin 26560 -> 26572 bytes
09-build_abe-qemu/console.log.xz | Bin 34312 -> 34312 bytes
09-build_abe-qemu/make-qemu.log.xz | Bin 27396 -> 27420 bytes
10-build_abe-dejagnu/console.log.xz | Bin 4304 -> 4336 bytes
11-build_abe-check_binutils/check-binutils.log.xz | Bin 5280 -> 5280 bytes
11-build_abe-check_binutils/console.log.xz | Bin 4164 -> 3464 bytes
11-build_abe-check_binutils/flaky.xfail | 2 +-
12-check_regression/console.log.xz | Bin 1148 -> 1152 bytes
12-check_regression/results.compare2 | 4 +--
13-update_baseline/console.log | 16 +++++-----
git/binutils_rev | 2 +-
git/gcc_rev | 2 +-
git/gdb_rev | 2 +-
git/newlib_rev | 2 +-
git/qemu_rev | 2 +-
manifest.sh | 36 +++++++++++-----------
sumfiles/binutils.sum | 2 +-
sumfiles/gas.sum | 4 +--
sumfiles/ld.sum | 4 +--
33 files changed, 39 insertions(+), 39 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.
"Maxim Kuvyrkov pushed a change to branch new-flaky
in repository toolchain/abe.
discards 0f5ceea8 lib/make.sh: Improve detection of flaky tests
new 1548f7b8 lib/make.sh: Improve detection of flaky tests
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 (0f5ceea8)
\
N -- N -- N refs/heads/new-flaky (1548f7b8)
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 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:
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.