This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap_profiled in repository toolchain/ci/gcc.
from 22b0476a814 [PR105032] LRA: modify loop condition to find reload insns [...] adds d32a5f4b52a rs6000: vec_neg built-ins wrongly require POWER8 adds e30c0657293 Update gcc hr.po adds b4e4b35f4eb Fortran: NULL pointer dereference checking arguments to ASS [...] adds 150ab50f744 Daily bump. adds 0ce8154f1c7 c++: parse trivial DMI immediately [PR96645] adds 63cd7cef7e0 gcov: Reword comment for gcov_read_string() adds b8207ad3671 Revert "gimple: allow more folding of memcpy [PR102125]" adds b75f996e846 rtl-optimization/105091 - wrong DSE with missed TREE_ADDRESSABLE adds bf4832d6fa8 [nvptx] Fix ASM_SPEC workaround for sm_30 adds 97ad0b83138 tree-optimization/105109 - bogus uninit diagnostic with _Complex adds 90533de067d [nvptx, testsuite] Fix typo in gcc.target/nvptx/march.c new f6d65e80362 ipa: Create LOAD references when necessary during inlining [...] new cf68f5a6d20 ipa-cp: Do not create clones for values outside known value [...] new 7f016919fc8 libstdc++: Add comment about memalign requirements new 7ea3a73c195 ipa: Careful processing ANCESTOR jump functions and NULL po [...] new 40d643d8de7 aarch64: Implement determine_suggested_unroll_factor
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: gcc/ChangeLog | 47 +++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 20 ++ gcc/config/aarch64/aarch64.cc | 89 ++++- gcc/config/aarch64/aarch64.opt | 4 + gcc/config/nvptx/nvptx.h | 22 +- gcc/config/rs6000/rs6000-builtins.def | 36 +-- gcc/cp/ChangeLog | 26 ++ gcc/cp/parser.cc | 28 +- gcc/doc/invoke.texi | 6 + gcc/fortran/ChangeLog | 5 + gcc/fortran/check.cc | 2 +- gcc/gcov-io.cc | 6 +- gcc/gimple-expr.cc | 3 +- gcc/gimple-fold.cc | 16 +- gcc/ipa-cp.cc | 103 ++++-- gcc/ipa-prop.cc | 50 +-- gcc/ipa-prop.h | 13 + gcc/po/ChangeLog | 4 + gcc/po/hr.po | 377 +++++++++++----------- gcc/testsuite/ChangeLog | 72 +++++ gcc/testsuite/g++.dg/cpp0x/nsdmi10.C | 4 +- gcc/testsuite/g++.dg/ext/is_constructible3.C | 2 +- gcc/testsuite/g++.dg/ext/is_constructible7.C | 3 +- gcc/testsuite/gcc.dg/ipa/pr102513.c | 33 ++ gcc/testsuite/gcc.dg/ipa/pr103083-1.c | 28 ++ gcc/testsuite/gcc.dg/ipa/pr103083-2.c | 30 ++ gcc/testsuite/gcc.dg/ipa/remref-6.c | 2 +- gcc/testsuite/gcc.dg/ipa/remref-7.c | 33 ++ gcc/testsuite/gcc.dg/lto/pr103171_0.c | 11 + gcc/testsuite/gcc.dg/lto/pr103171_1.c | 35 ++ gcc/testsuite/gcc.dg/uninit-pr105109.c | 15 + gcc/testsuite/gcc.target/nvptx/march.c | 2 +- gcc/testsuite/gfortran.dg/associated_target_8.f90 | 16 + gcc/tree-ssa.cc | 1 + libstdc++-v3/libsupc++/new_opa.cc | 2 + 36 files changed, 870 insertions(+), 278 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/ipa/pr102513.c create mode 100644 gcc/testsuite/gcc.dg/ipa/pr103083-1.c create mode 100644 gcc/testsuite/gcc.dg/ipa/pr103083-2.c create mode 100644 gcc/testsuite/gcc.dg/ipa/remref-7.c create mode 100644 gcc/testsuite/gcc.dg/lto/pr103171_0.c create mode 100644 gcc/testsuite/gcc.dg/lto/pr103171_1.c create mode 100644 gcc/testsuite/gcc.dg/uninit-pr105109.c create mode 100644 gcc/testsuite/gfortran.dg/associated_target_8.f90