This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-aarch64-bootstrap_O1 in repository toolchain/ci/gcc.
from abda1276bfe Daily bump. adds ab1361bacde PR c++/92365 adds 27a05134f4a PR rtl-optimization/92610 * cse.c (rest_of_handle_cse2): [...] adds 97a435f08ee PR middle-end/83859 * doc/extend.texi (attribute access): [...] adds 1fe462b2fe2 PR target/92615 * config/i386/i386.c (ix86_md_asm_adjust) [...] adds 7fe129f614e * ipa-fnsummary.c: Fix comment typos. * ipa-ref.h: Likewi [...] adds 9f737326c47 Convert inliner to function specific param infrastructure adds e81e274f75c /bin/sh: :q: command not found This patch adds opt_for_fn f [...] adds 9131d702902 Add test case for PR 92442. adds e74c281bf49 Fixed ChangeLog entry. adds dd1b54be6b5 Daily bump. new eb4fd88e986 Fix ix86 rtx costs for the pr30315 testcase (PR target/30315) new 11c38f6001a Do not ignore costs of jump insns in combine. new 713a306a87b Allow combiner to create autoinc in jump insns. new 4eedc697812 libstdc++: Improve _GLIBCXX_DEBUG __valid_range check new da6e57fde47 Fix EOF handling for arrays. new 3283d478892 2019-11-24 Jerry DeLisle jvdelisle@gcc.ngu.org
The 6 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 | 81 ++++++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 8 ++ gcc/c-family/c-attribs.c | 16 ++- gcc/cif-code.def | 2 - gcc/combine.c | 12 +- gcc/config/i386/i386.c | 19 +++- gcc/cp/ChangeLog | 6 + gcc/cp/name-lookup.c | 4 +- gcc/cse.c | 4 +- gcc/doc/extend.texi | 2 +- gcc/doc/invoke.texi | 21 ---- gcc/ipa-devirt.c | 28 ++--- gcc/ipa-fnsummary.c | 76 +++++++------ gcc/ipa-fnsummary.h | 10 +- gcc/ipa-icf-gimple.h | 8 +- gcc/ipa-icf.c | 18 +-- gcc/ipa-icf.h | 8 +- gcc/ipa-inline-analysis.c | 2 +- gcc/ipa-inline-transform.c | 6 +- gcc/ipa-inline.c | 124 ++++++++++----------- gcc/ipa-polymorphic-call.c | 52 ++++----- gcc/ipa-predicate.c | 6 +- gcc/ipa-predicate.h | 6 +- gcc/ipa-ref.h | 2 +- gcc/ipa-split.c | 4 +- gcc/opts.c | 4 + gcc/params.opt | 62 ++++------- gcc/profile-count.c | 8 +- gcc/profile-count.h | 32 +++--- gcc/testsuite/ChangeLog | 36 ++++++ gcc/testsuite/g++.dg/opt/pr92610.C | 13 +++ gcc/testsuite/g++.dg/pr92365.C | 12 ++ gcc/testsuite/g++.dg/tree-ssa/pr53844.C | 2 +- gcc/testsuite/g++.dg/tree-ssa/pr61034.C | 2 +- gcc/testsuite/g++.dg/tree-ssa/pr8781.C | 2 +- gcc/testsuite/g++.dg/warn/Wstringop-truncation-1.C | 2 +- gcc/testsuite/gcc.dg/ipa/pr63416.c | 2 +- gcc/testsuite/gcc.dg/tree-ssa/ssa-thread-12.c | 2 +- gcc/testsuite/gcc.dg/vect/pr66142.c | 2 +- gcc/testsuite/gcc.dg/winline-3.c | 2 +- gcc/testsuite/gcc.target/i386/pr92615.c | 45 ++++++++ gcc/testsuite/gcc.target/powerpc/pr72804.c | 2 +- gcc/testsuite/gfortran.dg/bounds_check_21.f90 | 12 ++ gcc/testsuite/gfortran.dg/eof_6.f90 | 23 ++++ libgfortran/ChangeLog | 14 +++ libgfortran/io/transfer.c | 71 +++++++++--- libstdc++-v3/ChangeLog | 29 +++-- libstdc++-v3/include/debug/functions.h | 18 --- libstdc++-v3/include/debug/helper_functions.h | 32 +++++- .../testsuite/25_algorithms/copy/debug/2_neg.cc | 37 ++++++ 51 files changed, 658 insertions(+), 335 deletions(-) create mode 100644 gcc/testsuite/g++.dg/opt/pr92610.C create mode 100644 gcc/testsuite/g++.dg/pr92365.C create mode 100644 gcc/testsuite/gcc.target/i386/pr92615.c create mode 100644 gcc/testsuite/gfortran.dg/bounds_check_21.f90 create mode 100644 gcc/testsuite/gfortran.dg/eof_6.f90 create mode 100644 libstdc++-v3/testsuite/25_algorithms/copy/debug/2_neg.cc