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-allmodconfig in repository toolchain/ci/gcc.
from 2cec7d51724 modulo-sched: fix parameters usage and their ranges adds 5e58c8b504e modulo-sched: fix branch rescheduling issue (PR92591) adds 92b03650b40 Update OpenACC tests for amdgcn adds a79907b3a97 * lto-streamer-in.c (input_function): Add node parameter. [...] adds bd963dc70a5 libbacktrace: add DWARF 5 support adds 144954dfd23 [Darwin, PPC] Use Darwin9 dylib header for Rosetta builds. adds 3d9bf16ac2c Fix potential race condition in OpenACC "exit data" operations adds 43692392895 Daily bump. adds f00ea49f5d5 PR middle-end/91582 - missing heap overflow detection for s [...] adds 1b23b137563 [Darwin, PPC] Use Darwin9 bundle header for Rosetta builds. adds db4b05c2c54 PR tree-optimization/92930 * ipa-pure-const.c (special_bu [...] adds fb55980a914 PR ipa/92357 * ipa-fnsummary.c (ipa_fn_summary_write): Us [...] new c102f45460a gcc/ChangeLog:
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 | 81 ++ gcc/DATESTAMP | 2 +- gcc/builtins.c | 259 +++-- gcc/builtins.h | 8 +- gcc/config/darwin.h | 11 +- gcc/config/rs6000/darwin.h | 18 +- gcc/doc/extend.texi | 20 +- gcc/ipa-fnsummary.c | 18 +- gcc/ipa-pure-const.c | 56 +- gcc/lto-streamer-in.c | 10 +- gcc/modulo-sched.c | 39 +- gcc/testsuite/ChangeLog | 30 + gcc/testsuite/c-c++-common/Wrestrict.c | 10 +- .../c-c++-common/Wstringop-truncation-4.c | 18 +- gcc/testsuite/c-c++-common/Wstringop-truncation.c | 3 +- gcc/testsuite/g++.dg/warn/Wstringop-overflow-3.C | 18 +- gcc/testsuite/gcc.dg/Warray-bounds-46.c | 2 +- gcc/testsuite/gcc.dg/Warray-bounds-47.c | 2 +- gcc/testsuite/gcc.dg/Warray-bounds-52.c | 97 ++ gcc/testsuite/gcc.dg/Wstringop-overflow-27.c | 293 +++++ gcc/testsuite/gcc.dg/Wstringop-overflow-28.c | 236 ++++ gcc/testsuite/gcc.dg/Wstringop-overflow-29.c | 66 ++ gcc/testsuite/gcc.dg/attr-alloc_size.c | 8 +- gcc/testsuite/gcc.dg/attr-copy-2.c | 4 +- gcc/testsuite/gcc.dg/builtin-stringop-chk-5.c | 4 +- gcc/testsuite/gcc.dg/pr92951-1.c | 11 + gcc/testsuite/gcc.dg/pr92951-2.c | 5 + gcc/testsuite/gcc.dg/strlenopt-86.c | 12 +- gcc/testsuite/gcc.dg/tree-ssa/pr92930.c | 19 + gcc/testsuite/gcc.target/i386/pr82002-1.c | 2 + gcc/tree-ssa-strlen.c | 822 +++++++++----- gcc/tree-ssa-strlen.h | 4 +- gcc/tree.c | 8 +- libbacktrace/ChangeLog | 53 + libbacktrace/Makefile.am | 21 + libbacktrace/Makefile.in | 112 +- libbacktrace/configure | 40 +- libbacktrace/configure.ac | 11 + libbacktrace/dwarf.c | 1127 +++++++++++++++++--- libbacktrace/elf.c | 4 + libbacktrace/internal.h | 4 + libbacktrace/pecoff.c | 6 +- libbacktrace/xcoff.c | 2 + libgomp/ChangeLog | 27 + libgomp/libgomp.h | 2 + libgomp/oacc-mem.c | 11 +- libgomp/target.c | 59 +- .../libgomp.oacc-c-c++-common/acc_prof-init-1.c | 2 + .../libgomp.oacc-c-c++-common/acc_prof-kernels-1.c | 4 + .../acc_prof-parallel-1.c | 12 + .../libgomp.oacc-c-c++-common/async_queue-1.c | 2 + .../libgomp.oacc-c-c++-common/asyncwait-nop-1.c | 2 + .../function-not-offloaded.c | 4 +- .../testsuite/libgomp.oacc-c-c++-common/tile-1.c | 3 + 54 files changed, 3044 insertions(+), 660 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/Warray-bounds-52.c create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overflow-27.c create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overflow-28.c create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overflow-29.c create mode 100644 gcc/testsuite/gcc.dg/pr92951-1.c create mode 100644 gcc/testsuite/gcc.dg/pr92951-2.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr92930.c