This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_build/master-arm in repository toolchain/ci/gcc.
from c8929840407 x86: correct bmi2_umul<mode><dwi>3_1's MEM_P() uses adds 3595231d9f5 i386: Remove constraints when used with constant integer pr [...] adds 43201f2c217 PR target/70321: Split double word equality/inequality afte [...] adds 2a12adfa8bd Make the default rtx_costs of MULT/DIV variants consistent. adds f1652e3343b PR rtl-optimization/101617: Use neg/sbb in ix86_expand_int_movcc. adds 871dbb6112e Fortran: improve runtime error message with ALLOCATE and ER [...] adds 1ad584d538d Allow SCmode and DImode to be tieable with TARGET_64BIT on x86_64. adds ff91735a5b8 c++: Add !TYPE_P assert to type_dependent_expression_p [PR99080] adds 0f4df800b15 Daily bump. adds f38b20d68fa openmp: Add support for firstprivate and allocate clauses o [...] adds b5cf960e29f c++: use current_template_constraints more adds da8a18df7d1 c++: document comp_template_args's default args adds 6c3c8f087cf Correct spelling of DW_AT_namelist_item adds 67d399d509c aarch64: Fix build with gcc-4.8 adds a0bc7fd4213 d: Fix D lexer sometimes fails to compile code read from stdin
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 79 +++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 205 ++++++++++++ gcc/c/c-parser.cc | 2 + gcc/config/aarch64/aarch64.cc | 6 +- gcc/config/i386/i386-expand.cc | 84 ++--- gcc/config/i386/i386-features.cc | 101 +++--- gcc/config/i386/i386-features.h | 1 + gcc/config/i386/i386.cc | 12 + gcc/config/i386/i386.md | 164 ++++++--- gcc/config/i386/mmx.md | 20 +- gcc/config/i386/sse.md | 371 +++++++++++---------- gcc/config/i386/subst.md | 10 +- gcc/config/i386/sync.md | 4 +- gcc/cp/ChangeLog | 7 + gcc/cp/cp-tree.h | 2 +- gcc/cp/decl.cc | 17 +- gcc/cp/parser.cc | 2 + gcc/cp/pt.cc | 26 +- gcc/cp/semantics.cc | 12 +- gcc/d/d-lang.cc | 4 + gcc/dwarf2out.cc | 2 +- gcc/fortran/ChangeLog | 9 + gcc/fortran/libgfortran.h | 1 + gcc/fortran/trans-stmt.cc | 33 +- gcc/fortran/trans.cc | 4 +- gcc/omp-low.cc | 3 +- gcc/rtlanal.cc | 7 + gcc/testsuite/ChangeLog | 36 ++ gcc/testsuite/c-c++-common/gomp/scope-5.c | 9 + gcc/testsuite/c-c++-common/gomp/scope-6.c | 31 ++ gcc/testsuite/g++.dg/gomp/attrs-1.C | 6 +- gcc/testsuite/g++.dg/gomp/attrs-2.C | 6 +- gcc/testsuite/gcc.target/i386/pr101617.c | 19 ++ gcc/testsuite/gcc.target/i386/pr105624.c | 2 +- gcc/testsuite/gcc.target/i386/pr70321.c | 10 + gcc/testsuite/gcc.target/i386/sse4_1-stv-1.c | 18 + .../gfortran.dg/allocate_alloc_opt_15.f90 | 49 +++ include/dwarf2.def | 2 +- .../testsuite/libgomp.c-c++-common/allocate-1.c | 30 +- .../testsuite/libgomp.c-c++-common/allocate-3.c | 35 +- libgomp/testsuite/libgomp.c-c++-common/scope-2.c | 54 +++ 42 files changed, 1109 insertions(+), 388 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/scope-5.c create mode 100644 gcc/testsuite/c-c++-common/gomp/scope-6.c create mode 100644 gcc/testsuite/gcc.target/i386/pr101617.c create mode 100644 gcc/testsuite/gcc.target/i386/pr70321.c create mode 100644 gcc/testsuite/gcc.target/i386/sse4_1-stv-1.c create mode 100644 gcc/testsuite/gfortran.dg/allocate_alloc_opt_15.f90 create mode 100644 libgomp/testsuite/libgomp.c-c++-common/scope-2.c