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-mainline-allnoconfig in repository toolchain/ci/gcc.
from 21d18541ada Fix 'libgomp.fortran/target-print-1.f90', 'libgomp.oacc-for [...] adds 5f71c0b4196 Do not define DFP builtin functions, if DFP has been disabled. adds 1a931bc82ea PR c++/92206 - ICE with typedef to dependent alias. adds 4dd28a2cc2d Fix constrained alias template transparency. adds 7dd9f591c3d Implement P1814R0, CTAD for alias templates. adds 599e9022dbe Reformat movsi_internal. adds a7d9e69399c Reformat movdi_internal64. adds 0134f4f874a Daily bump. adds 32a7b5a3ffd * gcc/config/i386/sse.md (avx512f_maskcmp<mode>3): Refin [...] adds c68295cdee9 [rs6000] Fix PR92566 by checking VECTOR_UNIT_NONE_P adds e77ee1837fb Handle correctly global0 and global counters in profile_cou [...] adds 807aea17327 PR c++/92695 * decl2.c (mark_used): Don't call note_vague [...] adds cdd97fb1425 PR tree-optimization/92691 * tree-ssa-strlen.c (handle_st [...] adds f88ed7de657 [testsuite][arm] Force use of -mfloat-abi=softfp in asm-flag-4.c adds 2570589c60a Must use push insn to pass varargs arguments of DFmode bec [...] adds edc22d312a5 2019-11-28 Richard Biener rguenther@suse.de adds 5c974e5c428 2019-11-28 Richard Biener rguenther@suse.de adds ad06966f667 * ipa-cp.c (update_profiling_info): Fix scaling. adds d79f15c7ce1 * ipa-utils.c (ipa_merge_profiles): Be sure that all type [...] adds 1b05a084f52 Fix profile adjusments while cloning adds 2b6587bcc0e Fix previous commit (that included unrelated changes) adds 8dc85ce9fa0 cgraph: ifunc resolvers cannot be made local (PR 92697) adds 5032844978c * profile-count.h (profile_count::max): Work on profiles o [...] adds 8c305ac77b6 Prevent inconsistent profiles to be created in inlin_transform adds 63623bacfa8 * profile-count.c (profile_count::combine_with_ipa_count): [...] adds 4958f67ad65 Remove leftover optimize checks. new 43c1b219e33 PR fortran/90374 * io.c (check_format): Allow zero width [...] new 9595f62a078 [Darwin, X86, testsuite] Update tests for common section use.
The 2 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 | 118 ++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 4 + gcc/c-family/c-cppbuiltin.c | 4 +- gcc/cgraph.c | 1 + gcc/cgraphclones.c | 14 +- gcc/config/avr/avr.md | 2 +- gcc/config/i386/sse.md | 4 +- gcc/config/rs6000/rs6000-call.c | 14 + gcc/config/rs6000/rs6000.c | 29 +- gcc/config/rs6000/rs6000.md | 157 ++++-- gcc/cp/ChangeLog | 39 ++ gcc/cp/call.c | 2 +- gcc/cp/constraint.cc | 34 +- gcc/cp/cp-tree.h | 11 +- gcc/cp/cxx-pretty-print.c | 6 +- gcc/cp/decl.c | 2 +- gcc/cp/decl2.c | 7 +- gcc/cp/error.c | 6 +- gcc/cp/parser.c | 11 +- gcc/cp/pt.c | 604 ++++++++++++++++----- gcc/cp/tree.c | 14 +- gcc/cp/typeck.c | 11 +- gcc/fortran/ChangeLog | 5 + gcc/fortran/io.c | 19 +- gcc/ipa-cp.c | 10 +- gcc/ipa-inline-transform.c | 51 +- gcc/ipa-inline.c | 21 +- gcc/ipa-utils.c | 64 ++- gcc/profile-count.c | 33 ++ gcc/profile-count.h | 23 +- gcc/symtab.c | 4 +- gcc/testsuite/ChangeLog | 37 ++ gcc/testsuite/g++.dg/cpp0x/alias-decl-pr92206-4.C | 11 + gcc/testsuite/g++.dg/cpp1z/class-deduction46.C | 2 +- .../g++.dg/cpp2a/class-deduction-alias1.C | 27 + .../g++.dg/cpp2a/class-deduction-alias2.C | 22 + gcc/testsuite/g++.dg/cpp2a/concepts-alias.C | 9 +- gcc/testsuite/g++.dg/cpp2a/concepts-alias3.C | 10 + gcc/testsuite/g++.dg/cpp2a/concepts-alias4.C | 10 + gcc/testsuite/g++.dg/cpp2a/explicit11.C | 2 +- gcc/testsuite/g++.dg/cpp2a/feat-cxx2a.C | 4 +- gcc/testsuite/g++.dg/ipa/pr92697.C | 51 ++ gcc/testsuite/g++.dg/warn/inline3.C | 20 + .../gcc.dg/tree-ssa/builtin-snprintf-10.c | 10 + gcc/testsuite/gcc.dg/tree-ssa/inline-12.c | 22 + gcc/testsuite/gcc.target/arm/asm-flag-4.c | 4 +- gcc/testsuite/gcc.target/i386/pr32219-2.c | 9 +- gcc/testsuite/gcc.target/i386/pr92645-4.c | 56 ++ gcc/testsuite/gfortran.dg/fmt_zero_width.f90 | 20 +- gcc/tree-inline.c | 5 +- gcc/tree-ssa-forwprop.c | 96 +++- gcc/tree-ssa-strlen.c | 72 +-- libgfortran/ChangeLog | 8 +- libgfortran/io/format.c | 16 +- libgfortran/io/write_float.def | 2 +- 56 files changed, 1441 insertions(+), 410 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/alias-decl-pr92206-4.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/class-deduction-alias1.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/class-deduction-alias2.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-alias3.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-alias4.C create mode 100644 gcc/testsuite/g++.dg/ipa/pr92697.C create mode 100644 gcc/testsuite/g++.dg/warn/inline3.C create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/builtin-snprintf-10.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/inline-12.c create mode 100644 gcc/testsuite/gcc.target/i386/pr92645-4.c