This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/omp/gcc-13 in repository gcc.
from 5283f9c926e OpenMP: requires unified_shared_memory patch, insert USM al [...] adds 0697deb22e5 Daily bump. adds b823634589d Loongarch: Fix plugin header missing install. adds 9703a3f3f74 Daily bump. adds 2da8609d9b1 Daily bump. adds f9e46345a57 Support -march=gracemont adds 82bc96d5c54 Daily bump. adds 93c4226585c RISCV: Fix PR111074 [GCC13 BUG] adds d9193096793 libstdc++: Make __cmp_cat::__unseq constructor consteval adds bf5f8808f0c libstdc++: Fix -Wunused-parameter in <experimental/internet> adds 3f4caf5e1e4 libstdc++: Replace global std::string objects in tzdb.cc adds 6c54fc2560c libstdc++: Fix std::format("{:F}", inf) to use uppercase adds e7a097ea72d doc: Remove obsolete sentence about _Float* not being suppo [...] adds a8a7ba2e295 RISC-V: Add riscv-vsetvl.def to t-riscv adds 63252696baf Daily bump. adds 8e828c10249 i386: Fix register spill failure with concat RTX [PR111010] adds 5ec044e8d4e Daily bump. adds 20ff0c0bed6 Adjust GCC V13 to GCC 13.1 in diagnotic. adds 74e3194675a Fix target_clone ("arch=graniterapids-d") adds fb6d6129915 debug/111080 - avoid outputting debug info for unused restr [...] adds 15d855788ba MATCH: [PR111109] Fix bit_ior(cond,cond) when comparisons are fp adds 5ca9aea6953 tree-optimization/110702 - avoid zero-based memory referenc [...] adds c1b5514124a tree-optimization/111019 - invariant motion and aliasing adds e150cbf5917 tree-optimization/111039 - abnormals and bit test merging adds ad42dcf501e tree-optimization/111070 - fix ICE with recent ifcombine fix adds d4648a00df7 omp-expand.cc: Fix wrong code with non-rectangular loop nes [...] adds 765bf89b91d Daily bump. adds bb791011b39 Fix avx512ne2ps2bf16 wrong code [PR 111127] new 9f7bff64a53 Merge branch 'releases/gcc-13' into devel/omp/gcc-13
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 | 137 +++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/common/config/i386/cpuinfo.h | 3 + gcc/common/config/i386/i386-common.cc | 8 +- gcc/config/i386/i386-c.cc | 7 ++ gcc/config/i386/i386-options.cc | 4 +- gcc/config/i386/i386.cc | 2 +- gcc/config/i386/i386.h | 3 +- gcc/config/i386/i386.md | 6 +- gcc/config/i386/sse.md | 4 +- gcc/config/loongarch/t-loongarch | 4 + gcc/config/riscv/riscv-vsetvl.cc | 3 + gcc/config/riscv/t-riscv | 3 +- gcc/doc/extend.texi | 2 +- gcc/dwarf2out.cc | 7 ++ gcc/match.pd | 11 +- gcc/omp-expand.cc | 3 +- gcc/testsuite/ChangeLog | 48 ++++++++ gcc/testsuite/g++.dg/torture/pr111019.C | 65 ++++++++++ .../gcc.c-torture/execute/ieee/fp-cmp-cond-1.c | 78 ++++++++++++ gcc/testsuite/gcc.dg/debug/dwarf2/pr111080.c | 18 +++ gcc/testsuite/gcc.dg/pr111039.c | 15 +++ .../tic6x/abi-align-1.c => gcc.dg/pr111070.c} | 3 +- gcc/testsuite/gcc.dg/torture/pr110702.c | 31 +++++ gcc/testsuite/gcc.target/i386/pr111127.c | 24 ++++ gcc/tree-ssa-ifcombine.cc | 10 ++ gcc/tree-ssa-loop-im.cc | 14 ++- gcc/tree-ssa-loop-ivopts.cc | 17 ++- libgomp/ChangeLog | 8 ++ .../libgomp.c-c++-common/non-rect-loop-1.c | 72 +++++++++++ libstdc++-v3/ChangeLog | 36 ++++++ libstdc++-v3/include/experimental/internet | 2 +- libstdc++-v3/include/std/format | 10 +- libstdc++-v3/libsupc++/compare | 2 +- libstdc++-v3/src/c++20/tzdb.cc | 4 +- .../18_support/comparisons/categories/zero_neg.cc | 8 ++ .../testsuite/std/format/functions/format.cc | 12 ++ 37 files changed, 660 insertions(+), 26 deletions(-) create mode 100644 gcc/testsuite/g++.dg/torture/pr111019.C create mode 100644 gcc/testsuite/gcc.c-torture/execute/ieee/fp-cmp-cond-1.c create mode 100644 gcc/testsuite/gcc.dg/debug/dwarf2/pr111080.c create mode 100644 gcc/testsuite/gcc.dg/pr111039.c copy gcc/testsuite/{gcc.target/tic6x/abi-align-1.c => gcc.dg/pr111070.c} (84%) create mode 100644 gcc/testsuite/gcc.dg/torture/pr110702.c create mode 100644 gcc/testsuite/gcc.target/i386/pr111127.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/non-rect-loop-1.c