This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_build/master-arm in repository toolchain/ci/gcc.
from ad6135e261c libstdc++: Remove workaround in __gnu_cxx::char_traits::mov [...] adds 897b3b31f0a analyzer: fix false positives from -Wanalyzer-tainted-divis [...] adds a8dce13c076 Convert label_text to C++11 move semantics adds 52f538fa4a1 analyzer: use label_text for superedge::get_description adds 7b90f07f778 c++: generic targs and identity substitution [PR105956] adds 9ed57796235 libbacktrace: don't let "make clean" remove allocfail.sh adds d8ddf1fa098 libbacktrace: don't exit Mach-O dyld library loop on one failure adds 6345c414544 Daily bump. adds aa8fd7f6568 LoongArch: Modify fp_sp_offset and gp_sp_offset's calculati [...] adds bf3695691f4 i386: Handle memory operand for direct call to cvtps2pd in unpack adds 13f44099bcc middle-end: Use subregs to expand COMPLEX_EXPR to set the lowpart. adds faa0c328ee6 Fix one issue in OpenMP 'requires' directive diagnostics adds f7854e2faf7 middle-end: don't lower past veclower [PR106063] adds 95a234f5cbd lto-dump: Do not print output file adds cf3a120084e tree-optimization/106226 - move vectorizer virtual SSA update adds 6da7f7c5ac0 sanitizer: Fix hwasan related option conflicts [PR106132] adds 2bd15617e73 diagnostics: Make line-ending logic consistent with libcpp [...] new b984b84cbe4 testsuite: Fix tree-ssa/alias-access-path-13.c on 32bit pla [...]
The 1 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 | 74 ++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 43 +++++ gcc/analyzer/call-info.cc | 1 - gcc/analyzer/checker-path.cc | 96 ++++------ gcc/analyzer/diagnostic-manager.cc | 8 - gcc/analyzer/engine.cc | 5 +- gcc/analyzer/program-state.cc | 1 - gcc/analyzer/region.cc | 1 - gcc/analyzer/sm-malloc.cc | 3 - gcc/analyzer/sm-taint.cc | 51 ++++-- gcc/analyzer/sm.cc | 12 ++ gcc/analyzer/sm.h | 2 + gcc/analyzer/store.cc | 3 - gcc/analyzer/supergraph.cc | 13 +- gcc/analyzer/supergraph.h | 2 +- gcc/analyzer/svalue.cc | 1 - gcc/builtins.cc | 8 +- gcc/c-family/ChangeLog | 6 + gcc/c-family/c-format.cc | 1 - gcc/calls.cc | 2 +- gcc/config/i386/sse.md | 12 +- gcc/config/loongarch/loongarch.cc | 12 +- gcc/cp/ChangeLog | 22 +++ gcc/cp/pt.cc | 202 ++++++++++++++------- gcc/diagnostic-format-json.cc | 4 +- gcc/diagnostic-format-sarif.cc | 1 - gcc/diagnostic-show-locus.cc | 49 +++-- gcc/emit-rtl.cc | 6 +- gcc/expmed.cc | 28 +-- gcc/expmed.h | 2 +- gcc/expr.cc | 44 ++--- gcc/expr.h | 2 +- gcc/ifcvt.cc | 5 +- gcc/input.cc | 67 +++++-- gcc/internal-fn.cc | 16 +- gcc/lto-cgraph.cc | 2 +- gcc/lto/lto-dump.cc | 16 +- gcc/match.pd | 14 +- gcc/opts.cc | 4 +- gcc/testsuite/ChangeLog | 26 +++ gcc/testsuite/c-c++-common/hwasan/arguments-3.c | 4 +- gcc/testsuite/c-c++-common/pr91733.c | 17 ++ gcc/testsuite/g++.dg/cpp0x/variadic183.C | 14 ++ gcc/testsuite/g++.target/aarch64/complex-init.C | 37 ++++ gcc/testsuite/g++.target/i386/pr106180-1.C | 31 ++++ gcc/testsuite/gcc.dg/analyzer/taint-divisor-1.c | 66 +++++++ gcc/testsuite/gcc.dg/pr106063.c | 9 + .../gcc.dg/tree-ssa/alias-access-path-13.c | 7 +- gcc/testsuite/gcc.target/loongarch/prolog-opt.c | 15 ++ gcc/testsuite/gfortran.dg/pr106226.f | 37 ++++ gcc/toplev.cc | 2 +- gcc/tree-diagnostic-path.cc | 4 - gcc/tree-vect-loop-manip.cc | 11 +- gcc/tree-vect-stmts.cc | 8 + gcc/tree-vectorizer.cc | 29 ++- libbacktrace/ChangeLog | 11 ++ libbacktrace/Makefile.am | 27 ++- libbacktrace/Makefile.in | 15 +- libbacktrace/macho.c | 2 +- libcpp/ChangeLog | 9 + libcpp/include/line-map.h | 46 ++++- libgomp/ChangeLog | 21 +++ .../testsuite/libgomp.c-c++-common/requires-1.c | 4 +- .../testsuite/libgomp.c-c++-common/requires-2.c | 4 +- .../testsuite/libgomp.c-c++-common/requires-3.c | 4 +- .../testsuite/libgomp.c-c++-common/requires-7.c | 10 +- libgomp/testsuite/libgomp.fortran/requires-1.f90 | 8 + libstdc++-v3/ChangeLog | 6 + lto-plugin/ChangeLog | 11 ++ 70 files changed, 1022 insertions(+), 316 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/pr91733.c create mode 100644 gcc/testsuite/g++.dg/cpp0x/variadic183.C create mode 100644 gcc/testsuite/g++.target/aarch64/complex-init.C create mode 100644 gcc/testsuite/g++.target/i386/pr106180-1.C create mode 100644 gcc/testsuite/gcc.dg/pr106063.c create mode 100644 gcc/testsuite/gcc.target/loongarch/prolog-opt.c create mode 100644 gcc/testsuite/gfortran.dg/pr106226.f