This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 76773d3fea4 Fix PR c/94726: ICE with __builtin_shuffle and changing of types
new 00f6de9c691 Fortran: Fix assumed-size to assumed-rank passing [PR94070]
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/trans-array.c | 165 ++++++++++++++++----
gcc/fortran/trans-array.h | 2 +
gcc/fortran/trans-decl.c | 14 --
gcc/fortran/trans-expr.c | 43 +++++-
gcc/fortran/trans-intrinsic.c | 119 ++++++---------
gcc/fortran/trans.h | 2 -
gcc/testsuite/gfortran.dg/assumed_rank_22.f90 | 169 +++++++++++++++++++++
gcc/testsuite/gfortran.dg/assumed_rank_22_aux.c | 68 +++++++++
.../gfortran.dg/c-interop/cf-out-descriptor-6.f90 | 2 +-
gcc/testsuite/gfortran.dg/c-interop/size.f90 | 2 +-
gcc/testsuite/gfortran.dg/intrinsic_size_3.f90 | 2 +-
gcc/testsuite/gfortran.dg/size_optional_dim_1.f90 | 4 +
.../gfortran.dg/transpose_optimization_2.f90 | 2 +-
libgfortran/intrinsics/size.c | 4 +
.../libgomp.oacc-fortran/privatized-ref-2.f90 | 13 +-
15 files changed, 482 insertions(+), 129 deletions(-)
create mode 100644 gcc/testsuite/gfortran.dg/assumed_rank_22.f90
create mode 100644 gcc/testsuite/gfortran.dg/assumed_rank_22_aux.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.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/master-arm
in repository toolchain/ci/gcc.
from fe2771b291c Fortran: Fix associated intrinsic with assumed rank [PR101334]
adds 1932e1169a2 Daily bump.
adds e7b8d702005 Revert "Optimize v4sf reduction.".
adds 6390c5047ad Allow different vector types for stmt groups
adds e1d01f4973e Convert some evrp uses in DOM to the range_query API.
new d5f8abe1d3f Use on-demand ranges in ssa_name_has_boolean_range before q [...]
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 | 5 +
gcc/DATESTAMP | 2 +-
gcc/config/i386/sse.md | 39 ++---
gcc/fortran/ChangeLog | 6 +
gcc/gimple-ssa-evrp-analyze.h | 7 -
gcc/testsuite/ChangeLog | 5 +
gcc/testsuite/gcc.target/i386/sse2-pr101059.c | 32 ----
gcc/testsuite/gcc.target/i386/sse3-pr101059.c | 13 --
gcc/testsuite/gcc.target/i386/vect-pr82426.c | 31 ++++
gcc/testsuite/gcc.target/i386/vect-pr97352.c | 22 +++
gcc/tree-ssa-dom.c | 17 +-
gcc/tree-ssanames.c | 19 ++-
gcc/tree-vect-data-refs.c | 227 ++++++++++++++------------
gcc/tree-vect-slp.c | 59 -------
gcc/tree-vect-stmts.c | 77 +++++----
gcc/tree-vectorizer.h | 32 ++--
libgfortran/ChangeLog | 5 +
17 files changed, 293 insertions(+), 305 deletions(-)
delete mode 100644 gcc/testsuite/gcc.target/i386/sse2-pr101059.c
delete mode 100644 gcc/testsuite/gcc.target/i386/sse3-pr101059.c
create mode 100644 gcc/testsuite/gcc.target/i386/vect-pr82426.c
create mode 100644 gcc/testsuite/gcc.target/i386/vect-pr97352.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.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/master-arm
in repository toolchain/ci/binutils-gdb.
from 9a6abcc83c Automatic date update in version.in
adds bf86d80dd2 Automatic date update in version.in
adds c11f01dbbd gdb: fix indentation in gdbtypes.c
adds 203a982434 [gdb/testsuite] Test sw watchpoint in gdb.threads/process-di [...]
adds ee2ff2eaa5 [gdb/testsuite] Fix gdb.base/dcache-flush.exp
new 275ee935b3 gdb: prevent an assertion when computing the frame_id for an [...]
new 5cf3b30948 gdb: remove duplicate cmd_list_element declarations
new fde1a9a3ee gdb: add setting to disable reading source code files
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:
bfd/version.h | 2 +-
gdb/NEWS | 9 ++
gdb/cli/cli-cmds.c | 4 +
gdb/cli/cli-cmds.h | 40 ++++++
gdb/doc/gdb.texinfo | 26 ++++
gdb/frame.c | 60 +++++++--
gdb/gdbcmd.h | 105 +--------------
gdb/gdbtypes.c | 2 +-
gdb/inline-frame.c | 5 +-
gdb/source.c | 66 +++++++++-
gdb/testsuite/gdb.base/dcache-flush.exp | 4 +-
gdb/testsuite/gdb.base/inline-frame-cycle-unwind.c | 58 +++++++++
.../gdb.base/inline-frame-cycle-unwind.exp | 145 +++++++++++++++++++++
.../gdb.base/inline-frame-cycle-unwind.py | 85 ++++++++++++
gdb/testsuite/gdb.base/source-open.c | 25 ++++
gdb/testsuite/gdb.base/source-open.exp | 44 +++++++
.../gdb.threads/process-dies-while-detaching.exp | 41 ++++--
17 files changed, 590 insertions(+), 131 deletions(-)
create mode 100644 gdb/testsuite/gdb.base/inline-frame-cycle-unwind.c
create mode 100644 gdb/testsuite/gdb.base/inline-frame-cycle-unwind.exp
create mode 100644 gdb/testsuite/gdb.base/inline-frame-cycle-unwind.py
create mode 100644 gdb/testsuite/gdb.base/source-open.c
create mode 100644 gdb/testsuite/gdb.base/source-open.exp
--
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_gcc_check/master-arm
in repository toolchain/ci/base-artifacts.
discards c6efaeed5 0: update: binutils-gcc: 1
new acdac3f21 0: update: binutils-gcc: 1
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 (c6efaeed5)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_gcc_check/master-arm (ac [...]
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:
01-reset_artifacts/console.log.xz | Bin 1516 -> 1520 bytes
02-prepare_abe/console.log.xz | Bin 2752 -> 2752 bytes
03-build_abe-binutils/console.log.xz | Bin 64180 -> 64156 bytes
04-build_abe-gcc/console.log.xz | Bin 224800 -> 224180 bytes
05-build_abe-dejagnu/console.log.xz | Bin 3816 -> 3848 bytes
06-build_abe-check_gcc/console.log.xz | Bin 2632 -> 2796 bytes
07-check_regression/console.log.xz | Bin 2588 -> 2380 bytes
07-check_regression/results.compare | 16 +-
07-check_regression/results.compare2 | 31 +-
08-update_baseline/console.log | 274 +--
08-update_baseline/results.compare | 16 +-
08-update_baseline/results.compare2 | 31 +-
jenkins/manifest.sh | 14 +-
sumfiles/g++.log.xz | Bin 2689968 -> 2700732 bytes
sumfiles/g++.sum | 114 +-
sumfiles/gcc.log.xz | Bin 2214720 -> 2217844 bytes
sumfiles/gcc.sum | 4190 ++++++++++++++++-----------------
sumfiles/gfortran.log.xz | Bin 860228 -> 862000 bytes
sumfiles/gfortran.sum | 40 +-
sumfiles/libatomic.log.xz | Bin 2152 -> 2144 bytes
sumfiles/libatomic.sum | 4 +-
sumfiles/libgomp.log.xz | Bin 165968 -> 166036 bytes
sumfiles/libgomp.sum | 16 +-
sumfiles/libitm.log.xz | Bin 2524 -> 2524 bytes
sumfiles/libitm.sum | 6 +-
sumfiles/libstdc++.log.xz | Bin 454572 -> 458344 bytes
sumfiles/libstdc++.sum | 10 +-
27 files changed, 2352 insertions(+), 2410 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_bmk_gnu_apm/gnu-master-aarch64-spec2k6-Os
in repository toolchain/ci/base-artifacts.
discards ba05354a2 3: update: binutils-gcc-linux-glibc: 1
new a6e289a9e 3: update: binutils-gcc-linux-glibc: 1
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 (ba05354a2)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_bmk_gnu_apm/gnu-master-a [...]
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:
01-reset_artifacts/console.log.xz | Bin 1600 -> 1572 bytes
02-prepare_abe/console.log.xz | Bin 2760 -> 2772 bytes
03-build_abe-binutils/console.log.xz | Bin 44004 -> 46152 bytes
04-build_abe-stage1/console.log.xz | Bin 73544 -> 74980 bytes
06-build_abe-linux/console.log.xz | Bin 8928 -> 9120 bytes
07-build_abe-glibc/console.log.xz | Bin 236812 -> 237672 bytes
08-build_abe-stage2/console.log.xz | Bin 174524 -> 175328 bytes
10-benchmark/benchmark-start.log | 2 +-
10-benchmark/benchmark.log | 49 +-
10-benchmark/console.log.xz | Bin 2980 -> 2636 bytes
11-check_regression/console.log.xz | Bin 7068 -> 6892 bytes
11-check_regression/results-0.csv | 3540 ++--
11-check_regression/results-1.csv | 3566 ++--
11-check_regression/results-brief.csv | 58 +-
11-check_regression/results-compare.csv | 9 +-
11-check_regression/results-full.csv | 3766 ++--
11-check_regression/results.csv | 241 +-
11-check_regression/results.log | 4688 ++---
12-update_baseline/console.log | 19556 +++++++++----------
12-update_baseline/results-1.csv | 3566 ++--
12-update_baseline/results-brief.csv | 58 +-
12-update_baseline/results-compare.csv | 9 +-
12-update_baseline/results-full.csv | 3538 ++--
12-update_baseline/results.csv | 237 +-
12-update_baseline/results.log | 3106 ++-
.../top-artifacts/save-temps/400.perlbench.tar.xz | Bin 962280 -> 961948 bytes
.../top-artifacts/save-temps/401.bzip2.tar.xz | Bin 77244 -> 77224 bytes
.../top-artifacts/save-temps/403.gcc.tar.xz | Bin 2679820 -> 2679660 bytes
.../top-artifacts/save-temps/410.bwaves.tar.xz | Bin 12644 -> 12656 bytes
.../top-artifacts/save-temps/416.gamess.tar.xz | Bin 3422600 -> 3421828 bytes
.../top-artifacts/save-temps/429.mcf.tar.xz | Bin 30104 -> 30100 bytes
.../top-artifacts/save-temps/433.milc.tar.xz | Bin 120116 -> 119980 bytes
.../top-artifacts/save-temps/434.zeusmp.tar.xz | Bin 104656 -> 104660 bytes
.../top-artifacts/save-temps/435.gromacs.tar.xz | Bin 739412 -> 739468 bytes
.../top-artifacts/save-temps/436.cactusADM.tar.xz | Bin 500128 -> 499940 bytes
.../top-artifacts/save-temps/437.leslie3d.tar.xz | Bin 39428 -> 39420 bytes
.../top-artifacts/save-temps/444.namd.tar.xz | Bin 175340 -> 175416 bytes
.../top-artifacts/save-temps/445.gobmk.tar.xz | Bin 1509264 -> 1509364 bytes
.../top-artifacts/save-temps/447.dealII.tar.xz | Bin 2226372 -> 2226232 bytes
.../top-artifacts/save-temps/450.soplex.tar.xz | Bin 405404 -> 405576 bytes
.../top-artifacts/save-temps/453.povray.tar.xz | Bin 1112512 -> 1112460 bytes
.../top-artifacts/save-temps/454.calculix.tar.xz | Bin 947912 -> 948168 bytes
.../top-artifacts/save-temps/456.hmmer.tar.xz | Bin 276576 -> 276816 bytes
.../top-artifacts/save-temps/458.sjeng.tar.xz | Bin 117460 -> 117456 bytes
.../top-artifacts/save-temps/459.GemsFDTD.tar.xz | Bin 122760 -> 122848 bytes
.../top-artifacts/save-temps/462.libquantum.tar.xz | Bin 42708 -> 42680 bytes
.../top-artifacts/save-temps/464.h264ref.tar.xz | Bin 438692 -> 438756 bytes
.../top-artifacts/save-temps/465.tonto.tar.xz | Bin 1378336 -> 1378104 bytes
.../top-artifacts/save-temps/470.lbm.tar.xz | Bin 21960 -> 21972 bytes
.../top-artifacts/save-temps/471.omnetpp.tar.xz | Bin 676972 -> 676848 bytes
.../top-artifacts/save-temps/473.astar.tar.xz | Bin 64000 -> 64048 bytes
.../top-artifacts/save-temps/481.wrf.tar.xz | Bin 1178032 -> 1177984 bytes
.../top-artifacts/save-temps/482.sphinx3.tar.xz | Bin 189644 -> 189592 bytes
.../top-artifacts/save-temps/483.xalancbmk.tar.xz | Bin 5893556 -> 5893484 bytes
jenkins/manifest.sh | 22 +-
results_id | 2 +-
save-temps/400.perlbench.tar.xz | Bin 962280 -> 961948 bytes
save-temps/401.bzip2.tar.xz | Bin 77244 -> 77224 bytes
save-temps/403.gcc.tar.xz | Bin 2679820 -> 2679660 bytes
save-temps/410.bwaves.tar.xz | Bin 12644 -> 12656 bytes
save-temps/416.gamess.tar.xz | Bin 3422600 -> 3421828 bytes
save-temps/429.mcf.tar.xz | Bin 30104 -> 30100 bytes
save-temps/433.milc.tar.xz | Bin 120116 -> 119980 bytes
save-temps/434.zeusmp.tar.xz | Bin 104656 -> 104660 bytes
save-temps/435.gromacs.tar.xz | Bin 739412 -> 739468 bytes
save-temps/436.cactusADM.tar.xz | Bin 500128 -> 499940 bytes
save-temps/437.leslie3d.tar.xz | Bin 39428 -> 39420 bytes
save-temps/444.namd.tar.xz | Bin 175340 -> 175416 bytes
save-temps/445.gobmk.tar.xz | Bin 1509264 -> 1509364 bytes
save-temps/447.dealII.tar.xz | Bin 2226372 -> 2226232 bytes
save-temps/450.soplex.tar.xz | Bin 405404 -> 405576 bytes
save-temps/453.povray.tar.xz | Bin 1112512 -> 1112460 bytes
save-temps/454.calculix.tar.xz | Bin 947912 -> 948168 bytes
save-temps/456.hmmer.tar.xz | Bin 276576 -> 276816 bytes
save-temps/458.sjeng.tar.xz | Bin 117460 -> 117456 bytes
save-temps/459.GemsFDTD.tar.xz | Bin 122760 -> 122848 bytes
save-temps/462.libquantum.tar.xz | Bin 42708 -> 42680 bytes
save-temps/464.h264ref.tar.xz | Bin 438692 -> 438756 bytes
save-temps/465.tonto.tar.xz | Bin 1378336 -> 1378104 bytes
save-temps/470.lbm.tar.xz | Bin 21960 -> 21972 bytes
save-temps/471.omnetpp.tar.xz | Bin 676972 -> 676848 bytes
save-temps/473.astar.tar.xz | Bin 64000 -> 64048 bytes
save-temps/481.wrf.tar.xz | Bin 1178032 -> 1177984 bytes
save-temps/482.sphinx3.tar.xz | Bin 189644 -> 189592 bytes
save-temps/483.xalancbmk.tar.xz | Bin 5893556 -> 5893484 bytes
85 files changed, 22987 insertions(+), 23026 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_bmk_llvm_tx1
in repository toolchain/ci/interesting-commits.
from 5e3eefd Add last-good 77d200a546136c2855063613ff4bca1f682fb23a from h [...]
new 202179c Add regression e8e2edd8ca88f8b0a7dba141349b2aa83284f3af from [...]
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:
llvm | 1 +
1 file changed, 1 insertion(+)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.