This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 445d8da5fbd coroutines: Update handling and failure for g-r-o-o-a-f [PR95505] new bbac3886a2e Daily bump. new f002c046e37 rs6000: Add base support and types for defining MMA built-ins. new 8ee2640bfdc rs6000: Add MMA built-in function definitions and test cases. new 47ddb895df3 aix: Add GCC64 configuration and FAT target libraries.
The 4 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 | 7 + gcc/DATESTAMP | 2 +- gcc/config.gcc | 6 +- gcc/config/rs6000/aix72.h | 89 +++- gcc/config/rs6000/{default64.h => defaultaix64.h} | 11 +- gcc/config/rs6000/mma.md | 586 ++++++++++++++++++++++ gcc/config/rs6000/predicates.md | 5 + gcc/config/rs6000/rs6000-builtin.def | 155 ++++++ gcc/config/rs6000/rs6000-c.c | 4 + gcc/config/rs6000/rs6000-call.c | 507 ++++++++++++++++++- gcc/config/rs6000/rs6000-cpus.def | 4 +- gcc/config/rs6000/rs6000-modes.def | 10 + gcc/config/rs6000/rs6000.c | 317 +++++++++++- gcc/config/rs6000/rs6000.h | 47 +- gcc/config/rs6000/rs6000.md | 6 +- gcc/config/rs6000/rs6000.opt | 4 + gcc/config/rs6000/{t-aix52 => t-aix64} | 9 +- gcc/config/rs6000/t-rs6000 | 1 + gcc/config/rs6000/vsx.md | 15 + gcc/cp/ChangeLog | 16 + gcc/doc/extend.texi | 95 ++++ gcc/doc/invoke.texi | 12 +- gcc/fortran/ChangeLog | 33 ++ gcc/testsuite/ChangeLog | 41 ++ gcc/testsuite/gcc.target/powerpc/mma-builtin-1.c | 313 ++++++++++++ gcc/testsuite/gcc.target/powerpc/mma-builtin-2.c | 72 +++ gcc/testsuite/gcc.target/powerpc/mma-builtin-3.c | 31 ++ gcc/testsuite/gcc.target/powerpc/mma-builtin-4.c | 28 ++ gcc/testsuite/gcc.target/powerpc/mma-builtin-5.c | 31 ++ gcc/testsuite/gcc.target/powerpc/mma-builtin-6.c | 18 + libatomic/Makefile.am | 5 + libatomic/Makefile.in | 6 + libatomic/config/t-aix | 10 + libatomic/configure | 18 +- libatomic/configure.ac | 13 + libatomic/configure.tgt | 6 + libgcc/config.host | 2 +- libgcc/config/rs6000/t-aix-cxa | 15 +- libgcc/config/rs6000/t-slibgcc-aix | 69 ++- libgfortran/Makefile.am | 5 + libgfortran/Makefile.in | 6 + libgfortran/config/t-aix | 10 + libgfortran/configure | 17 +- libgfortran/configure.ac | 12 + libgfortran/configure.host | 18 + libgomp/Makefile.am | 5 + libgomp/Makefile.in | 12 +- libgomp/config/t-aix | 9 + libgomp/configure | 18 +- libgomp/configure.ac | 12 + libgomp/configure.tgt | 5 + libstdc++-v3/ChangeLog | 7 + libstdc++-v3/Makefile.am | 5 + libstdc++-v3/Makefile.in | 6 + libstdc++-v3/config/os/aix/t-aix | 9 + libstdc++-v3/configure | 30 +- libstdc++-v3/configure.ac | 11 + libstdc++-v3/configure.host | 16 +- 58 files changed, 2695 insertions(+), 137 deletions(-) copy gcc/config/rs6000/{default64.h => defaultaix64.h} (71%) create mode 100644 gcc/config/rs6000/mma.md copy gcc/config/rs6000/{t-aix52 => t-aix64} (82%) create mode 100644 gcc/testsuite/gcc.target/powerpc/mma-builtin-1.c create mode 100644 gcc/testsuite/gcc.target/powerpc/mma-builtin-2.c create mode 100644 gcc/testsuite/gcc.target/powerpc/mma-builtin-3.c create mode 100644 gcc/testsuite/gcc.target/powerpc/mma-builtin-4.c create mode 100644 gcc/testsuite/gcc.target/powerpc/mma-builtin-5.c create mode 100644 gcc/testsuite/gcc.target/powerpc/mma-builtin-6.c create mode 100644 libatomic/config/t-aix create mode 100644 libgfortran/config/t-aix create mode 100644 libgomp/config/t-aix create mode 100644 libstdc++-v3/config/os/aix/t-aix