This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_tx1/llvm-master-aarch64-spec2k6-Oz_LTO in repository toolchain/ci/gcc.
from d5dfd4793fe libgo: update to Go 1.14.6 release adds ab660b01c33 Daily bump. adds 8a8c2573568 rs6000: Generate _Decimal128 to _Decimal32 hardware convers [...] adds 0b7e26d8f91 testsuite/c-c++-common/cpp/pragma-eof.c: Add missing requir [...] adds 7aa22a8f1a5 x86-64: Define ASM_OUTPUT_ALIGNED_DECL_LOCAL adds 60c1baebbaa testsuite: fix goacc/finalize-1.f "original" regex for 32 bits. adds a36b14a333c fortran: Restore translation to hint. adds 2f1d4cb54ef testsuite: Fix pragma-eof.c failure due to added line to the test. adds aeb34e15143 Daily bump. adds 4058650cf2e gcc.dg/Wno-frame-address.c: Skip for cris and mmix. adds 7cc34b761cf gcc.dg/attr-copy-6.c: Require visibility. adds 3055d879edb Fix handling of implicit_pure by checking if non-pure proce [...] adds 29e1039ca21 x86: Add __cpuidex and include guard to <cpuid.h> adds 2e1b25350aa Always use name from c_interop_kinds_table for -fc-prototypes. adds 5154dab3da6 Daily bump. adds dd64a7fd274 mmix: When debug-dump, revert to "standard" pseudos for emi [...] adds 3ca6f6698c7 gcc.dg/pr87485.c: Require scheduling adds 9fb832ce382 vect: Support length-based partial vectors approach adds f3d4b922394 gcc.dg/cdce3.c: Skip for mmix. adds 0251a7eef96 gcc.dg/const-uniq-1.c: Adjust scanned pattern for mmix. new 83b171655dc fold-const: Handle bitfields in native_encode_initializer [ [...] new e4f1cbc35b1 gimple-fold: Handle bitfields in fold_const_aggregate_ref_1 [...] new a926eeedf43 preprocessor: line-map cleanups
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: contrib/ChangeLog | 4 + gcc/ChangeLog | 115 ++++++++++++ gcc/DATESTAMP | 2 +- gcc/config/i386/cpuid.h | 12 ++ gcc/config/i386/x86-64.h | 11 ++ gcc/config/mmix/mmix.c | 35 +++- gcc/config/rs6000/dfp.md | 13 ++ gcc/config/rs6000/rs6000.c | 5 + gcc/config/rs6000/rs6000.md | 6 +- gcc/cp/ChangeLog | 6 + gcc/doc/invoke.texi | 9 + gcc/fold-const.c | 114 +++++++++++- gcc/fortran/ChangeLog | 20 ++ gcc/fortran/check.c | 2 +- gcc/fortran/dump-parse-tree.c | 55 ++---- gcc/fortran/frontend-passes.c | 76 +++++++- gcc/fortran/gfortran.h | 1 + gcc/fortran/parse.c | 22 +++ gcc/gimple-fold.c | 60 +++++- gcc/optabs-query.c | 27 +++ gcc/optabs-query.h | 1 + gcc/params.opt | 4 + gcc/testsuite/ChangeLog | 123 ++++++++++++ gcc/testsuite/c-c++-common/cpp/pragma-eof.c | 3 +- gcc/testsuite/gcc.dg/Wno-frame-address.c | 2 +- gcc/testsuite/gcc.dg/attr-copy-6.c | 1 + gcc/testsuite/gcc.dg/cdce3.c | 1 + gcc/testsuite/gcc.dg/const-uniq-1.c | 2 +- gcc/testsuite/gcc.dg/pr87485.c | 1 + gcc/testsuite/gcc.dg/tree-ssa/pr93121-1.c | 56 ++++++ gcc/testsuite/gcc.dg/tree-ssa/pr93121-2.c | 22 +++ gcc/testsuite/gcc.target/i386/pr95973.c | 25 +++ gcc/testsuite/gcc.target/powerpc/convert-fp-128.c | 18 +- gcc/testsuite/gcc.target/powerpc/pr92488.c | 43 +++++ gcc/testsuite/gfortran.dg/goacc/finalize-1.f | 4 +- gcc/testsuite/gfortran.dg/implicit_pure_5.c | 7 + gcc/testsuite/gfortran.dg/implicit_pure_5.f90 | 63 +++++++ gcc/tree-vect-loop-manip.c | 182 ++++++++++-------- gcc/tree-vect-loop.c | 217 +++++++++++++++++++++- gcc/tree-vect-stmts.c | 167 +++++++++++++++-- gcc/tree-vectorizer.h | 35 +++- libcpp/line-map.c | 52 +++--- libgomp/ChangeLog | 5 + libgomp/testsuite/libgomp.c/pr95620.c | 18 ++ libstdc++-v3/ChangeLog | 5 + 45 files changed, 1463 insertions(+), 189 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr93121-1.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr93121-2.c create mode 100644 gcc/testsuite/gcc.target/i386/pr95973.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr92488.c create mode 100644 gcc/testsuite/gfortran.dg/implicit_pure_5.c create mode 100644 gcc/testsuite/gfortran.dg/implicit_pure_5.f90 create mode 100644 libgomp/testsuite/libgomp.c/pr95620.c