This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from ea82325afec openmp: Change omp_atv_default value and rename omp_atv_seq [...] new 5acef69f9d3 openmp: Optimize triangular loop logical iterator to actual [...] new dd21b039000 Schedule reduction partition in the last. new a1e25d00087 remove premature vect_verify_datarefs_alignment new fab263ab0fc x86: Enable FMA in rsqrt<mode>2 expander new 614662064ad c++: Partially revert fix for PR c++/95497 [PR96132] new 9ddea930625 fixup BIT_FIELD_REF detection in SLP discovery
The 6 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/i386/i386-expand.c | 18 ++- gcc/config/i386/sse.md | 24 ++- gcc/cp/constexpr.c | 1 + gcc/omp-expand.c | 211 ++++++++++++++++++++++++++- gcc/omp-general.c | 23 ++- gcc/omp-general.h | 7 + gcc/testsuite/g++.dg/template/incomplete12.C | 9 ++ gcc/testsuite/gcc.dg/tree-ssa/pr95804.c | 18 +++ gcc/testsuite/gcc.dg/vect/bb-slp-10.c | 2 +- gcc/testsuite/gcc.dg/vect/slp-45.c | 3 +- gcc/testsuite/gcc.dg/vect/vect-109.c | 2 +- gcc/testsuite/gcc.target/i386/pr88713-1.c | 13 ++ gcc/testsuite/gcc.target/i386/pr88713-2.c | 6 + gcc/tree-loop-distribution.c | 21 ++- gcc/tree-vect-data-refs.c | 88 ++--------- gcc/tree-vect-loop.c | 2 - gcc/tree-vect-slp.c | 42 +++--- gcc/tree-vect-stmts.c | 14 ++ gcc/tree-vectorizer.h | 4 +- libgomp/testsuite/libgomp.c/loop-19.c | 86 +++++++++++ libgomp/testsuite/libgomp.c/loop-20.c | 84 +++++++++++ 21 files changed, 541 insertions(+), 137 deletions(-) create mode 100644 gcc/testsuite/g++.dg/template/incomplete12.C create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr95804.c create mode 100644 gcc/testsuite/gcc.target/i386/pr88713-1.c create mode 100644 gcc/testsuite/gcc.target/i386/pr88713-2.c create mode 100644 libgomp/testsuite/libgomp.c/loop-19.c create mode 100644 libgomp/testsuite/libgomp.c/loop-20.c