This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 3b86188 PR78494 add missing returns to propagate_const new da80a82 Merge from HSA branch to trunk
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 | 259 +++++ gcc/Makefile.in | 3 +- gcc/builtins.def | 16 + gcc/doc/optinfo.texi | 3 + gcc/dumpfile.c | 1 + gcc/dumpfile.h | 3 +- gcc/fortran/ChangeLog | 4 + gcc/fortran/f95-lang.c | 11 + gcc/gimple.h | 57 + gcc/hsa-brig.c | 140 +-- gcc/hsa-builtins.def | 39 + gcc/hsa-dump.c | 107 +- gcc/hsa-gen.c | 914 ++++++++------- gcc/hsa.c | 60 +- gcc/hsa.h | 157 ++- gcc/ipa-hsa.c | 14 +- gcc/omp-low.c | 1559 +++++++++++++++++++------- gcc/testsuite/ChangeLog | 7 + gcc/testsuite/c-c++-common/gomp/gridify-1.c | 2 +- gcc/testsuite/c-c++-common/gomp/gridify-2.c | 66 ++ gcc/testsuite/c-c++-common/gomp/gridify-3.c | 68 ++ gcc/testsuite/gfortran.dg/gomp/gridify-1.f90 | 2 +- libgomp/ChangeLog | 6 + libgomp/testsuite/libgomp.hsa.c/bits-insns.c | 73 ++ libgomp/testsuite/libgomp.hsa.c/tiling-1.c | 212 ++++ libgomp/testsuite/libgomp.hsa.c/tiling-2.c | 258 +++++ 26 files changed, 2996 insertions(+), 1045 deletions(-) create mode 100644 gcc/hsa-builtins.def create mode 100644 gcc/testsuite/c-c++-common/gomp/gridify-2.c create mode 100644 gcc/testsuite/c-c++-common/gomp/gridify-3.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/bits-insns.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/tiling-1.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/tiling-2.c