This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/c++-coroutines in repository gcc.
from 3911700e14a Merge master r12-2476. adds e4966e1d1de Bind(c): signed char is not a Fortran character type adds 01ac2f08b01 Daily bump. adds 3382846558e Fix execution failure of parity_1.f90 on P10 [PR100952] adds 60933a148ab analyzer: fix feasibility false +ve with overly complex svalues adds 863737b8de7 Revert "testsuite: mips: use noinline attribute instead of [...] adds 19e05058799 testsuite: mips: pass -finline/-fnoinline through adds 2c5d803d032 openmp: Diagnose invalid mixing of the attribute and pragma [...] adds 7f7364108f7 openmp: Add support for __has_attribute(omp::directive) and [...] adds 5b965dc49a6 libstdc++: Update documentation comments for namespace rel_ops adds 484acfa4cfe aarch64: Use memcpy to copy vector tables in vqtbl[234] intrinsics adds 5f65676eba1 aarch64: Use memcpy to copy vector tables in vqtbx[234] intrinsics adds f2f04d8b9d1 aarch64: Use memcpy to copy vector tables in vtbl[34] intrinsics adds 4848e283cca aarch64: Use memcpy to copy vector tables in vtbx4 intrinsics adds e8de7edde6c aarch64: Use memcpy to copy vector tables in vst4[q] intrinsics adds 95509ee2c13 aarch64: Use memcpy to copy vector tables in vst3[q] intrinsics adds 03148b8e508 aarch64: Use memcpy to copy vector tables in vst2[q] intrinsics adds 1711b045829 aarch64: Use memcpy to copy vector tables in vst1[q]_x4 intrinsics adds 3ea62a2b2ed libstdc++: Reduce headers included by <future> adds 085666673db x86: Don't return hard register when LRA is in progress adds ccf6e2c21be aarch64: Use memcpy to copy vector tables in vst1[q]_x3 intrinsics adds 50752b751ff aarch64: Use memcpy to copy vector tables in vst1[q]_x2 intrinsics adds 435f90187eb Use range_query object in array bounds class. new d221f9d3643 Merge master r12-2498.
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 | 69 ++ gcc/DATESTAMP | 2 +- gcc/analyzer/diagnostic-manager.cc | 47 +- gcc/analyzer/region-model-manager.cc | 4 + gcc/analyzer/region-model.h | 5 + gcc/c-family/c-lex.c | 15 +- gcc/c-family/c-pragma.h | 4 + gcc/config/aarch64/arm_neon.h | 1029 +++++++------------- gcc/config/i386/i386.c | 2 +- gcc/config/rs6000/rs6000.md | 5 +- gcc/cp/parser.c | 40 +- gcc/cp/parser.h | 3 + gcc/gimple-array-bounds.h | 4 +- gcc/testsuite/ChangeLog | 36 + gcc/testsuite/c-c++-common/gomp/attrs-1.c | 146 +++ gcc/testsuite/c-c++-common/gomp/attrs-2.c | 146 +++ gcc/testsuite/c-c++-common/gomp/attrs-3.c | 74 ++ gcc/testsuite/g++.dg/gomp/attrs-4.C | 61 ++ gcc/testsuite/g++.dg/gomp/attrs-5.C | 46 + gcc/testsuite/gcc.dg/analyzer/feasibility-3.c | 133 +++ .../aarch64/vector_structure_intrinsics.c | 207 ++++ gcc/testsuite/gcc.target/i386/pr101504.c | 23 + gcc/testsuite/gcc.target/mips/cfgcleanup-jalr2.c | 11 +- gcc/testsuite/gcc.target/mips/cfgcleanup-jalr3.c | 6 +- gcc/testsuite/gcc.target/mips/mips.exp | 1 + libgfortran/ChangeLog | 6 + libgfortran/runtime/ISO_Fortran_binding.c | 13 +- libstdc++-v3/ChangeLog | 44 + libstdc++-v3/include/bits/stl_relops.h | 15 +- libstdc++-v3/include/std/future | 3 +- 30 files changed, 1503 insertions(+), 697 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/attrs-1.c create mode 100644 gcc/testsuite/c-c++-common/gomp/attrs-2.c create mode 100644 gcc/testsuite/c-c++-common/gomp/attrs-3.c create mode 100644 gcc/testsuite/g++.dg/gomp/attrs-4.C create mode 100644 gcc/testsuite/g++.dg/gomp/attrs-5.C create mode 100644 gcc/testsuite/gcc.dg/analyzer/feasibility-3.c create mode 100644 gcc/testsuite/gcc.target/aarch64/vector_structure_intrinsics.c create mode 100644 gcc/testsuite/gcc.target/i386/pr101504.c