This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 5210dc58b43 aarch64: Add __HAVE_FUNCTION_MULTI_VERSIONING macro. new b20c6458fa0 cobol: Implement the XML PARSE statement.
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/cobol/Make-lang.in | 10 + gcc/cobol/cdf.y | 16 +- gcc/cobol/gcobol.1 | 36 + gcc/cobol/genapi.cc | 233 +++- gcc/cobol/genapi.h | 17 +- gcc/cobol/parse.y | 413 +++++-- gcc/cobol/parse_ante.h | 30 +- gcc/cobol/scan.l | 7 +- gcc/cobol/scan_ante.h | 57 +- gcc/cobol/scan_post.h | 9 + gcc/cobol/symbols.cc | 76 +- gcc/cobol/symbols.h | 55 +- gcc/cobol/token_names.h | 660 +++++----- gcc/cobol/util.cc | 41 +- gcc/testsuite/cobol.dg/typo-1.cob | 15 + libgcobol/Makefile.am | 17 +- libgcobol/Makefile.in | 60 +- libgcobol/charmaps.cc | 2378 +++++++++++++++++++------------------ libgcobol/common-defs.h | 6 + libgcobol/constants.cc | 201 +++- libgcobol/encodings.h | 1 + libgcobol/libgcobol.cc | 6 +- libgcobol/posix/errno.cc | 7 + libgcobol/posix/localtime.cc | 34 + libgcobol/posix/stat.cc | 90 ++ libgcobol/posix/stat.h | 15 + libgcobol/posix/tm.h | 11 + libgcobol/xmlparse.cc | 594 +++++++++ 28 files changed, 3346 insertions(+), 1749 deletions(-) create mode 100644 gcc/testsuite/cobol.dg/typo-1.cob create mode 100644 libgcobol/posix/errno.cc create mode 100644 libgcobol/posix/localtime.cc create mode 100644 libgcobol/posix/stat.cc create mode 100644 libgcobol/posix/stat.h create mode 100644 libgcobol/posix/tm.h create mode 100644 libgcobol/xmlparse.cc