This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from a0ebfde01bd 2019-06-12 Steven G. Kargl kargl@gcc.gnu.org new 48aa9227888 Initial TI PRU GCC port
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: ChangeLog | 5 + configure | 7 + configure.ac | 7 + gcc/ChangeLog | 20 + .../{mmix/mmix-common.c => pru/pru-common.c} | 12 +- gcc/config.gcc | 9 + gcc/config/pru/alu-zext.md | 181 ++ gcc/config/pru/constraints.md | 108 + gcc/config/pru/predicates.md | 287 ++ gcc/config/{nvptx/nvptx-opts.h => pru/pru-opts.h} | 19 +- gcc/config/pru/pru-passes.c | 228 ++ gcc/config/pru/pru-pragma.c | 86 + gcc/config/pru/pru-protos.h | 72 + gcc/config/pru/pru.c | 3036 ++++++++++++++++++++ gcc/config/pru/pru.h | 573 ++++ gcc/config/pru/pru.md | 1022 +++++++ gcc/config/pru/pru.opt | 54 + gcc/config/pru/t-pru | 31 + gcc/doc/extend.texi | 21 + gcc/doc/invoke.texi | 65 + gcc/doc/md.texi | 19 + 21 files changed, 5850 insertions(+), 12 deletions(-) copy gcc/common/config/{mmix/mmix-common.c => pru/pru-common.c} (74%) create mode 100644 gcc/config/pru/alu-zext.md create mode 100644 gcc/config/pru/constraints.md create mode 100644 gcc/config/pru/predicates.md copy gcc/config/{nvptx/nvptx-opts.h => pru/pru-opts.h} (69%) create mode 100644 gcc/config/pru/pru-passes.c create mode 100644 gcc/config/pru/pru-pragma.c create mode 100644 gcc/config/pru/pru-protos.h create mode 100644 gcc/config/pru/pru.c create mode 100644 gcc/config/pru/pru.h create mode 100644 gcc/config/pru/pru.md create mode 100644 gcc/config/pru/pru.opt create mode 100644 gcc/config/pru/t-pru