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-aarch64-next-allyesconfig in repository toolchain/ci/gcc.
from 5d3c12e4184 [nvptx] Fix Wformat in nvptx_assemble_decl_begin adds ad2a37157d3 If the lto plugin encounters a file with multiple symbol se [...] adds 69ca5f3a988 bb-reorder: Remove a misfiring micro-optimization (PR96475) adds 7b9c26519e6 [nvptx, libgcc] Fix Wbuiltin-declaration-mismatch in atomic.c adds c6632dc9a8e libphobos: Include <cet.h> to generate the CET marker for - [...] adds bf69edf8ce4 x32: Update gcc.target/i386/builtin_thread_pointer.c adds 919373a6bff testsuite: Move auto-96647.C to c++1y/. adds 782d3ea603c testsuite: Use C++14 in g++.dg/warn/Wnonnull6.C. adds 749476b4be1 c++: omp reduction cleanups adds 10fc42a8396 analyzer: use objects for state_machine::state_t adds 6d9ca8c8604 analyzer: reimplement on_transition in terms of get_state/s [...] adds 25ef215abb1 analyzer: eliminate sm_context::warn_for_state in favor of [...] adds de8421dd8a0 Add codes for DWARF v5 .dwp sections to dwarf2.h. adds fcf56ef5d56 Update include/ChangeLog adds 1690a839cff analyzer: generalize sm-malloc to new/delete [PR94355] adds acbe30bbc88 c++: Fix ICE in reshape_init with init-list [PR95164] adds 81de459ec7c c++: Further tweaks for new-expression and paren-init [PR77841] adds 80f86e78ac0 Daily bump. adds 484af18ee1c Fixup config/ChangeLog. adds 47ddf4c7b1d tree-optimization/96043 - BB vectorization costing improvement adds 3d0af0c997f lto: Stream current working directory for first streamed re [...] adds f96b6328fa7 [tree-optimization] Don't clear ctrl-altering flag for IFN_UNIQUE new ae6cf62861b Cygwin/MinGW: Do not version lto plugins new d41f8429e9e [testsuite] Add missing require-effective-target allloca new f40866967d6 c++: DECL_LOCAL_FUNCTION_P -> DECL_LOCAL_DECL_P
The 3 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: config/ChangeLog | 11 + gcc/ChangeLog | 49 ++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 223 ++++++++ gcc/analyzer/analyzer.opt | 4 + gcc/analyzer/checker-path.cc | 25 +- gcc/analyzer/diagnostic-manager.cc | 56 +- gcc/analyzer/engine.cc | 83 ++- gcc/analyzer/program-state.cc | 72 ++- gcc/analyzer/region-model-impl-calls.cc | 35 ++ gcc/analyzer/region-model.cc | 65 ++- gcc/analyzer/region-model.h | 4 + gcc/analyzer/sm-file.cc | 15 +- gcc/analyzer/sm-malloc.cc | 633 +++++++++++++++++---- gcc/analyzer/sm-pattern-test.cc | 6 +- gcc/analyzer/sm-sensitive.cc | 9 +- gcc/analyzer/sm-signal.cc | 11 +- gcc/analyzer/sm-taint.cc | 53 +- gcc/analyzer/sm.cc | 62 +- gcc/analyzer/sm.h | 89 ++- gcc/bb-reorder.c | 10 +- gcc/config.host | 6 +- gcc/cp/ChangeLog | 37 ++ gcc/cp/call.c | 2 +- gcc/cp/cp-tree.h | 10 +- gcc/cp/decl.c | 33 +- gcc/cp/init.c | 54 +- gcc/cp/name-lookup.c | 45 +- gcc/cp/parser.c | 25 +- gcc/cp/pt.c | 14 +- gcc/cp/semantics.c | 2 +- gcc/doc/invoke.texi | 13 + gcc/fortran/ChangeLog | 12 + gcc/lto-streamer-in.c | 281 ++++++++- gcc/lto-streamer-out.c | 30 +- gcc/lto-streamer.h | 1 + gcc/testsuite/ChangeLog | 73 +++ gcc/testsuite/g++.dg/analyzer/new-1.C | 52 ++ gcc/testsuite/g++.dg/analyzer/new-vs-malloc.C | 21 + gcc/testsuite/g++.dg/cpp0x/initlist123.C | 39 ++ gcc/testsuite/g++.dg/{cpp0x => cpp1y}/auto-96647.C | 2 +- gcc/testsuite/g++.dg/cpp2a/new-array5.C | 15 + gcc/testsuite/g++.dg/cpp2a/paren-init36.C | 14 + gcc/testsuite/g++.dg/cpp2a/paren-init37.C | 14 + gcc/testsuite/g++.dg/pr84729.C | 2 +- gcc/testsuite/g++.dg/warn/Wnonnull6.C | 4 +- gcc/testsuite/g++.old-deja/g++.ext/arrnew2.C | 2 +- gcc/testsuite/g++.old-deja/g++.robertl/eb58.C | 2 +- gcc/testsuite/g++.old-deja/g++.robertl/eb63.C | 2 +- gcc/testsuite/gcc.dg/analyzer/vla-1.c | 1 + .../vect/costmodel/x86_64/costmodel-pr69297.c | 20 +- .../gcc.target/i386/builtin_thread_pointer.c | 4 +- gcc/tree-cfgcleanup.c | 6 +- gcc/tree-vect-slp.c | 185 +++++- gcc/tree-vectorizer.h | 8 +- include/ChangeLog | 10 + include/dwarf2.h | 41 +- libbacktrace/ChangeLog | 24 + libcc1/libcp1plugin.cc | 2 +- libgcc/ChangeLog | 5 + libgcc/config/nvptx/atomic.c | 12 +- libphobos/ChangeLog | 6 + libphobos/libdruntime/config/x86/switchcontext.S | 5 + lto-plugin/ChangeLog | 7 + lto-plugin/Makefile.am | 2 +- lto-plugin/Makefile.in | 2 +- lto-plugin/lto-plugin.c | 31 +- 67 files changed, 2188 insertions(+), 507 deletions(-) create mode 100644 gcc/testsuite/g++.dg/analyzer/new-1.C create mode 100644 gcc/testsuite/g++.dg/analyzer/new-vs-malloc.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist123.C rename gcc/testsuite/g++.dg/{cpp0x => cpp1y}/auto-96647.C (78%) create mode 100644 gcc/testsuite/g++.dg/cpp2a/new-array5.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/paren-init36.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/paren-init37.C