This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 344106a9668 c-common: Remove DEBUG_FUNCTION from verify_sequence_points new 366099ff082 Move size time tables from GGC to heap new 6cef01c3281 Add fnspec handling to ipa mode of ipa-modef. new ff47c61f07d Add dg-require-effective-target fpic to g++ tests new f11b1f9d155 Add dg-require-profiling directives to gcc.target/i386 tests new 8ebedfcd86a tree-optimization/97732 - fix init of SLP induction vectorization new a2c11935b01 OpenACC (C/C++): Fix 'acc atomic' parsing new c2e9f586fde OpenACC/Fortran: Reject '!$acc atomic update capture' new 7307d8e1072 tree-optimization/97706 - part one, refactor vect_determine [...] new b92e4be3a61 IBM Z: Remove override of inline params new 8a2fd716c9e ipa-modref: Fix comment typos new 7144270e2de Move ipa-refs from ggc to heap. new b88fdcc1c36 refactor SLP analysis new f176773bc27 gcc-changelog: prevent double cherry-pick line
The 13 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: contrib/gcc-changelog/git_commit.py | 6 +- contrib/gcc-changelog/test_email.py | 4 + contrib/gcc-changelog/test_patches.txt | 29 + gcc/attr-fnspec.h | 7 + gcc/c/c-parser.c | 24 +- gcc/cgraph.h | 6 +- gcc/config/s390/s390.c | 7 - gcc/cp/parser.c | 23 +- gcc/cp/tree.c | 3 +- gcc/fortran/openmp.c | 7 +- gcc/gimple-fold.c | 2 +- gcc/ipa-fnsummary.c | 77 +-- gcc/ipa-fnsummary.h | 17 +- gcc/ipa-modref-tree.h | 18 +- gcc/ipa-modref.c | 604 +++++++++++++++------ gcc/ipa-prop.c | 10 +- gcc/ipa-ref.c | 6 +- gcc/ipa-ref.h | 21 +- gcc/symtab.c | 17 +- gcc/testsuite/c-c++-common/goacc-gomp/atomic.c | 43 ++ gcc/testsuite/c-c++-common/goacc/atomic.c | 30 + gcc/testsuite/g++.dg/inherit/thunk8.C | 1 + gcc/testsuite/g++.dg/opt/pr64411.C | 1 + gcc/testsuite/g++.dg/pr57878.C | 1 + gcc/testsuite/g++.dg/pr65032.C | 1 + gcc/testsuite/g++.dg/pr84279.C | 1 + gcc/testsuite/gcc.dg/ipa/modref-2.c | 15 + gcc/testsuite/gcc.dg/lto/modref-2_0.c | 27 + gcc/testsuite/gcc.dg/vect/bb-slp-pr97732.c | 11 + gcc/testsuite/gcc.target/i386/fentryname1.c | 1 + gcc/testsuite/gcc.target/i386/fentryname2.c | 1 + gcc/testsuite/gcc.target/i386/fentryname3.c | 1 + gcc/testsuite/gcc.target/i386/returninst1.c | 1 + gcc/testsuite/gcc.target/i386/returninst2.c | 1 + gcc/testsuite/gcc.target/i386/returninst3.c | 1 + gcc/testsuite/gfortran.dg/goacc-gomp/atomic.f90 | 48 ++ .../{gomp/gomp.exp => goacc-gomp/goacc-gomp.exp} | 5 +- gcc/testsuite/gfortran.dg/goacc/atomic.f90 | 35 ++ gcc/tree-vect-loop.c | 4 + gcc/tree-vect-patterns.c | 161 +++--- gcc/tree-vect-slp.c | 105 ++-- 41 files changed, 977 insertions(+), 406 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/goacc-gomp/atomic.c create mode 100644 gcc/testsuite/c-c++-common/goacc/atomic.c create mode 100644 gcc/testsuite/gcc.dg/ipa/modref-2.c create mode 100644 gcc/testsuite/gcc.dg/lto/modref-2_0.c create mode 100644 gcc/testsuite/gcc.dg/vect/bb-slp-pr97732.c create mode 100644 gcc/testsuite/gfortran.dg/goacc-gomp/atomic.f90 copy gcc/testsuite/gfortran.dg/{gomp/gomp.exp => goacc-gomp/goacc-gomp.exp} (90%) create mode 100644 gcc/testsuite/gfortran.dg/goacc/atomic.f90