This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-lts-defconfig in repository toolchain/ci/gcc.
from b82dc579862 PR middle-end/92952 - gfortran.dg/lto/pr87689 FAILs at -O2 adds 8357387ae0e PR c++/91165 - verify_gimple ICE with cached constexpr. adds b1e6e489b54 Daily bump. adds 832e1bf09ad Use add for a = a + b and a = b + a when possible. Since ex [...] adds 2a7ce910893 Add abs pattern to handle {si,di} mode abs to avoid pmax/cm [...] adds c46fecbcadb PR target/92962 * common/config/i386/i386-common.c (proce [...] adds 3e1b818b7a6 libgomp/openacc.f90 – clean-up public/private attributes adds e7cbf9e45c0 Add clz and ctz for amdgcn adds 11675edaa44 Add extract_last for amdgcn adds 4ebc134c3d4 Add pointer to PR92772 adds 3081f59a482 Add myself to write after approval. adds 2e94764fe22 [ARM] Add support for -mpure-code in thumb-1 (v6m) adds c691da74aea * symtab.c (symtab_node::get_partitioning_class): Aliases [...] adds 82c0f49e82a Fix vector testcases for amdgcn. adds 44ba01519c2 Revert "Fix vector testcases for amdgcn." new ac8d0162b59 PR target/92841 * config/i386/i386.md (@stack_protect_set [...] new ada5a6defe4 PR c++/59655 * pt.c (push_tinst_level_loc): If limit_bad_ [...] new adbad0a15e0 * name-lookup.c (get_std_name_hint): Add std::byte. new 7484780e06a PR c++/92576 - redeclaration of variable template. new 6e8f413c4dc PR c++/79592 - missing explanation of invalid constexpr. new a11de5b6f98 Use PLI to load up large constants if -mcpu=future. new 04d2c8bc9a9 Use PLI to load up 32-bit SImode constants if -mcpu=future. new 1085aff070c Generate PADDI to add large constants if -mcpu=future.
The 8 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 | 4 + MAINTAINERS | 1 + gcc/ChangeLog | 83 ++++++++++++ gcc/DATESTAMP | 2 +- gcc/common/config/i386/i386-common.c | 10 +- gcc/config/arm/arm-protos.h | 1 + gcc/config/arm/arm.c | 88 +++++++++++-- gcc/config/arm/arm.h | 8 +- gcc/config/arm/thumb1.md | 69 +++++++++- gcc/config/gcn/gcn-valu.md | 42 ++++++ gcc/config/gcn/gcn.h | 4 + gcc/config/gcn/gcn.md | 30 ++++- gcc/config/i386/i386.c | 27 ++-- gcc/config/i386/i386.h | 2 + gcc/config/i386/i386.md | 141 ++++++++++++++++++++- gcc/config/i386/x86-tune.def | 7 + gcc/config/rs6000/predicates.md | 3 +- gcc/config/rs6000/rs6000.c | 4 + gcc/config/rs6000/rs6000.md | 41 +++--- gcc/cp/ChangeLog | 32 +++++ gcc/cp/constexpr.c | 59 +++++---- gcc/cp/decl.c | 16 +-- gcc/cp/decl2.c | 9 +- gcc/cp/name-lookup.c | 2 + gcc/cp/pt.c | 7 +- gcc/doc/invoke.texi | 20 +-- gcc/symtab.c | 5 + gcc/testsuite/ChangeLog | 32 +++++ gcc/testsuite/g++.dg/cpp0x/constexpr-nsdmi1.C | 12 ++ gcc/testsuite/g++.dg/cpp0x/constexpr-string2.C | 13 ++ gcc/testsuite/g++.dg/cpp0x/diag3.C | 20 +++ gcc/testsuite/g++.dg/cpp1y/var-templ32.C | 2 +- gcc/testsuite/g++.dg/cpp1y/var-templ65.C | 5 + .../g++.dg/lookup/missing-std-include-9.C | 3 + gcc/testsuite/gcc.target/arm/pr45701-1.c | 2 +- gcc/testsuite/gcc.target/arm/pr45701-2.c | 2 +- .../gcc.target/arm/pure-code/no-literal-pool.c | 14 +- .../gcc.target/arm/pure-code/pure-code.exp | 9 +- gcc/testsuite/gcc.target/arm/thumb1-Os-mult.c | 1 + gcc/testsuite/gcc.target/i386/pr92651.c | 16 +++ gcc/testsuite/gcc.target/i386/pr92807-1.c | 11 ++ gcc/testsuite/gcc.target/i386/pr92841.c | 17 +++ gcc/testsuite/lib/target-supports.exp | 3 +- gcc/tree-vect-loop.c | 5 +- libgomp/ChangeLog | 11 ++ libgomp/config/accel/openacc.f90 | 18 ++- libgomp/openacc.f90 | 11 +- libgomp/openacc_lib.h | 3 + 48 files changed, 801 insertions(+), 126 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-nsdmi1.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-string2.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/diag3.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/var-templ65.C create mode 100644 gcc/testsuite/g++.dg/lookup/missing-std-include-9.C create mode 100644 gcc/testsuite/gcc.target/i386/pr92651.c create mode 100644 gcc/testsuite/gcc.target/i386/pr92807-1.c create mode 100644 gcc/testsuite/gcc.target/i386/pr92841.c