This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from c6b277f1dc6 Daily bump. new a0754187274 COBOL: libgcobol new 3c5ed996ac9 COBOL: Frontend new 86ff23c9cbb COBOL: misc new ab79cd87c8a COBOL: documentation updates for gcobol new 45c281deb7a COBOL: config and build machinery new 86c692c51c3 Update update_web_docs_git for cobol
The 6 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: Makefile.def | 5 + Makefile.in | 527 +- configure | 53 + configure.ac | 50 + gcc/Makefile.in | 3 + gcc/cobol/LICENSE | 29 + gcc/cobol/Make-lang.in | 366 + gcc/cobol/cbldiag.h | 111 + gcc/cobol/cdf-copy.cc | 356 + gcc/cobol/cdf.y | 956 ++ gcc/cobol/cdfval.h | 113 + gcc/cobol/cobol-system.h | 64 + gcc/cobol/cobol1.cc | 692 + gcc/{fortran => cobol}/config-lang.in | 13 +- gcc/cobol/convert.cc | 78 + gcc/cobol/copybook.h | 205 + gcc/cobol/dts.h | 109 + gcc/cobol/except.cc | 370 + gcc/cobol/exceptg.h | 61 + gcc/cobol/gcobc | 465 + gcc/cobol/gcobol.1 | 1628 ++ gcc/cobol/gcobol.3 | 328 + gcc/cobol/gcobolspec.cc | 694 + gcc/cobol/genapi.cc | 16926 +++++++++++++++++++ gcc/cobol/genapi.h | 587 + gcc/cobol/gengen.cc | 3462 ++++ gcc/cobol/gengen.h | 544 + gcc/cobol/genmath.cc | 1730 ++ gcc/cobol/genmath.h | 36 + gcc/cobol/genutil.cc | 2642 +++ gcc/cobol/genutil.h | 168 + gcc/cobol/help.gen | 15 + gcc/cobol/inspect.h | 237 + gcc/cobol/lang-specs.h | 47 + gcc/cobol/lang.opt | 144 + gcc/cobol/lang.opt.urls | 29 + gcc/cobol/lexio.cc | 1878 ++ gcc/cobol/lexio.h | 294 + gcc/cobol/parse.y | 13107 ++++++++++++++ gcc/cobol/parse_ante.h | 3552 ++++ gcc/cobol/parse_util.h | 478 + gcc/cobol/scan.l | 2487 +++ gcc/cobol/scan_ante.h | 745 + gcc/cobol/scan_post.h | 401 + gcc/cobol/show_parse.h | 523 + gcc/cobol/structs.cc | 333 + gcc/cobol/structs.h | 62 + gcc/cobol/symbols.cc | 4881 ++++++ gcc/cobol/symbols.h | 2210 +++ gcc/cobol/symfind.cc | 611 + gcc/cobol/token_names.h | 1373 ++ gcc/cobol/udf/stored-char-length.cbl | 15 + gcc/cobol/util.cc | 2310 +++ gcc/cobol/util.h | 49 + gcc/common.opt | 4 + gcc/doc/contrib.texi | 8 + gcc/doc/frontends.texi | 16 +- gcc/doc/install.texi | 65 +- gcc/doc/invoke.texi | 7 + gcc/doc/sourcebuild.texi | 3 + gcc/doc/standards.texi | 7 + gcc/dwarf2out.cc | 5 + libgcobol/Makefile.am | 152 + {libcc1 => libgcobol}/Makefile.in | 596 +- libgcobol/README | 12 + {libobjc => libgcobol}/acinclude.m4 | 2 +- {libgm2 => libgcobol}/aclocal.m4 | 4 +- libgcobol/charmaps.cc | 929 + libgcobol/charmaps.h | 370 + libgcobol/common-defs.h | 504 + .../cc1plugin-config.h.in => libgcobol/config.h.in | 16 +- {libgrust => libgcobol}/configure | 6182 ++++--- libgcobol/configure.ac | 268 + libgcobol/configure.tgt | 41 + libgcobol/constants.cc | 423 + libgcobol/ec.h | 213 + libgcobol/exceptl.h | 256 + libgcobol/gcobolio.h | 114 + libgcobol/gfileio.cc | 4660 +++++ libgcobol/gfileio.h | 57 + libgcobol/gmath.cc | 2174 +++ libgcobol/gmath.h | 38 + libgcobol/intrinsic.cc | 5452 ++++++ libgcobol/io.cc | 95 + libgcobol/io.h | 137 + libgcobol/libgcobol.cc | 12649 ++++++++++++++ libgcobol/libgcobol.h | 257 + libgcobol/valconv.cc | 1721 ++ libgcobol/valconv.h | 80 + maintainer-scripts/update_web_docs_git | 29 + 90 files changed, 103785 insertions(+), 2913 deletions(-) create mode 100644 gcc/cobol/LICENSE create mode 100644 gcc/cobol/Make-lang.in create mode 100644 gcc/cobol/cbldiag.h create mode 100644 gcc/cobol/cdf-copy.cc create mode 100644 gcc/cobol/cdf.y create mode 100644 gcc/cobol/cdfval.h create mode 100644 gcc/cobol/cobol-system.h create mode 100644 gcc/cobol/cobol1.cc copy gcc/{fortran => cobol}/config-lang.in (71%) create mode 100644 gcc/cobol/convert.cc create mode 100644 gcc/cobol/copybook.h create mode 100644 gcc/cobol/dts.h create mode 100644 gcc/cobol/except.cc create mode 100644 gcc/cobol/exceptg.h create mode 100755 gcc/cobol/gcobc create mode 100644 gcc/cobol/gcobol.1 create mode 100644 gcc/cobol/gcobol.3 create mode 100644 gcc/cobol/gcobolspec.cc create mode 100644 gcc/cobol/genapi.cc create mode 100644 gcc/cobol/genapi.h create mode 100644 gcc/cobol/gengen.cc create mode 100644 gcc/cobol/gengen.h create mode 100644 gcc/cobol/genmath.cc create mode 100644 gcc/cobol/genmath.h create mode 100644 gcc/cobol/genutil.cc create mode 100644 gcc/cobol/genutil.h create mode 100755 gcc/cobol/help.gen create mode 100644 gcc/cobol/inspect.h create mode 100644 gcc/cobol/lang-specs.h create mode 100644 gcc/cobol/lang.opt create mode 100644 gcc/cobol/lang.opt.urls create mode 100644 gcc/cobol/lexio.cc create mode 100644 gcc/cobol/lexio.h create mode 100644 gcc/cobol/parse.y create mode 100644 gcc/cobol/parse_ante.h create mode 100644 gcc/cobol/parse_util.h create mode 100644 gcc/cobol/scan.l create mode 100644 gcc/cobol/scan_ante.h create mode 100644 gcc/cobol/scan_post.h create mode 100644 gcc/cobol/show_parse.h create mode 100644 gcc/cobol/structs.cc create mode 100644 gcc/cobol/structs.h create mode 100644 gcc/cobol/symbols.cc create mode 100644 gcc/cobol/symbols.h create mode 100644 gcc/cobol/symfind.cc create mode 100644 gcc/cobol/token_names.h create mode 100644 gcc/cobol/udf/stored-char-length.cbl create mode 100644 gcc/cobol/util.cc create mode 100644 gcc/cobol/util.h create mode 100644 libgcobol/Makefile.am copy {libcc1 => libgcobol}/Makefile.in (55%) create mode 100644 libgcobol/README copy {libobjc => libgcobol}/acinclude.m4 (94%) copy {libgm2 => libgcobol}/aclocal.m4 (99%) create mode 100644 libgcobol/charmaps.cc create mode 100644 libgcobol/charmaps.h create mode 100644 libgcobol/common-defs.h copy libcc1/cc1plugin-config.h.in => libgcobol/config.h.in (87%) copy {libgrust => libgcobol}/configure (93%) create mode 100644 libgcobol/configure.ac create mode 100644 libgcobol/configure.tgt create mode 100644 libgcobol/constants.cc create mode 100644 libgcobol/ec.h create mode 100644 libgcobol/exceptl.h create mode 100644 libgcobol/gcobolio.h create mode 100644 libgcobol/gfileio.cc create mode 100644 libgcobol/gfileio.h create mode 100644 libgcobol/gmath.cc create mode 100644 libgcobol/gmath.h create mode 100644 libgcobol/intrinsic.cc create mode 100644 libgcobol/io.cc create mode 100644 libgcobol/io.h create mode 100644 libgcobol/libgcobol.cc create mode 100644 libgcobol/libgcobol.h create mode 100644 libgcobol/valconv.cc create mode 100644 libgcobol/valconv.h