This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-13 in repository gcc.
from 05fddfd3220 Daily bump. new 4e0a922db4d i386: Fix setup of incoming varargs for (...) functions whi [...] new af189fa9c2c rs6000: Fix up setup_incoming_varargs [PR114175] new d3faceaa7a1 alpha: Fix alpha_setup_incoming_varargs [PR114175] new 097999338bc arc: Fix up arc_setup_incoming_varargs [PR114175] new 8046a7e2aee system.h: rename vec_step to workaround powerpc/clang bug [ [...] new 06f9476a60b csky: Fix up csky_setup_incoming_varargs [PR114175] new fce980ba380 epiphany: Fix up epiphany_setup_incoming_varargs [PR114175] new a2565fbb722 ft32: Fix up ft32_setup_incoming_varargs [PR114175] new f3af5a241c8 m32r: Fix up m32r_setup_incoming_varargs [PR114175] new 91092c30eda nds32: Fix up nds32_setup_incoming_varargs [PR114175] new 02f66c40fb6 nios2: Fix up nios2_setup_incoming_varargs [PR114175] new 01397f78986 visium: Fix up visium_setup_incoming_varargs [PR114175] new 05de873353a ubsan: Don't -fsanitize=null instrument __seg_fs/gs pointer [...] new 4320e8483bb predcom: Punt for steps which aren't multiples of access si [...] new 85b2b99e56b tsan: Don't instrument non-generic AS accesses [PR111736] new 71a1ccc0378 fold-const: Punt on MULT_EXPR in extract_muldiv MIN/MAX_EXP [...] new 43022dd24e8 testsuite: Add testcase for already fixed PR [PR109925] new b7b4ef2ff20 profile-count: Avoid overflows into uninitialized [PR112303]
The 18 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/config/alpha/alpha.cc | 3 +- gcc/config/arc/arc.cc | 3 +- gcc/config/csky/csky.cc | 3 +- gcc/config/epiphany/epiphany.cc | 3 +- gcc/config/ft32/ft32.cc | 7 +- gcc/config/i386/i386.cc | 3 +- gcc/config/m32r/m32r.cc | 3 +- gcc/config/nds32/nds32.cc | 3 +- gcc/config/nios2/nios2.cc | 3 +- gcc/config/rs6000/rs6000-call.cc | 3 +- gcc/config/visium/visium.cc | 3 +- gcc/fold-const.cc | 21 ++ gcc/profile-count.h | 12 +- gcc/system.h | 6 + gcc/testsuite/gcc.c-torture/compile/pr112303.c | 25 +++ gcc/testsuite/gcc.c-torture/execute/pr109925.c | 30 +++ gcc/testsuite/gcc.c-torture/execute/pr111151.c | 21 ++ gcc/testsuite/gcc.dg/c23-stdarg-7.c | 6 + gcc/testsuite/gcc.dg/c23-stdarg-8.c | 6 + gcc/testsuite/gcc.dg/c23-stdarg-9.c | 284 +++++++++++++++++++++++++ gcc/testsuite/gcc.dg/pr111683-1.c | 22 ++ gcc/testsuite/gcc.dg/pr111683-2.c | 27 +++ gcc/testsuite/gcc.dg/tsan/pr111736.c | 17 ++ gcc/testsuite/gcc.dg/ubsan/pr111736.c | 23 ++ gcc/tree-predcom.cc | 33 ++- gcc/tsan.cc | 3 + gcc/ubsan.cc | 19 +- 27 files changed, 572 insertions(+), 20 deletions(-) create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr112303.c create mode 100644 gcc/testsuite/gcc.c-torture/execute/pr109925.c create mode 100644 gcc/testsuite/gcc.c-torture/execute/pr111151.c create mode 100644 gcc/testsuite/gcc.dg/c23-stdarg-7.c create mode 100644 gcc/testsuite/gcc.dg/c23-stdarg-8.c create mode 100644 gcc/testsuite/gcc.dg/c23-stdarg-9.c create mode 100644 gcc/testsuite/gcc.dg/pr111683-1.c create mode 100644 gcc/testsuite/gcc.dg/pr111683-2.c create mode 100644 gcc/testsuite/gcc.dg/tsan/pr111736.c create mode 100644 gcc/testsuite/gcc.dg/ubsan/pr111736.c