This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 3b276fe0d22 Fortran: fix checking of MOLD= in ALLOCATE statements [PR51961] new 35b8acbd76c aarch64: Extend iterator support for partial SVE FP modes new a26c5fc8fe2 aarch64: Add support for unpacked SVE FP conversions new f298fabf3f1 cobol: Some 1000 small changes in answer to cppcheck diagnostics.
The 3 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 | 3 + gcc/cobol/cbldiag.h | 2 +- gcc/cobol/cdf-copy.cc | 8 +- gcc/cobol/cdf.y | 3 +- gcc/cobol/cdfval.h | 10 +- gcc/cobol/cobol1.cc | 2 +- gcc/cobol/copybook.h | 2 +- gcc/cobol/dts.h | 11 +- gcc/cobol/except.cc | 18 +- gcc/cobol/genapi.cc | 399 ++++++++++--------- gcc/cobol/genapi.h | 51 ++- gcc/cobol/genmath.cc | 47 +-- gcc/cobol/genutil.cc | 34 +- gcc/cobol/genutil.h | 2 +- gcc/cobol/inspect.h | 227 +++++------ gcc/cobol/lexio.cc | 83 ++-- gcc/cobol/lexio.h | 11 +- gcc/cobol/parse.y | 421 ++++++++++----------- gcc/cobol/parse_ante.h | 226 ++++++----- gcc/cobol/parse_util.h | 6 +- gcc/cobol/scan_ante.h | 16 +- gcc/cobol/scan_post.h | 2 +- gcc/cobol/show_parse.h | 12 +- gcc/cobol/symbols.cc | 137 +++---- gcc/cobol/symbols.h | 289 +++++++++----- gcc/cobol/symfind.cc | 10 +- gcc/cobol/token_names.h | 1 + gcc/cobol/util.cc | 149 ++++---- gcc/cobol/util.h | 7 + gcc/config/aarch64/aarch64-protos.h | 3 + gcc/config/aarch64/aarch64-sve.md | 391 ++++++++++++------- gcc/config/aarch64/aarch64.cc | 51 +++ gcc/config/aarch64/iterators.md | 84 ++-- gcc/config/aarch64/predicates.md | 5 + .../gcc.target/aarch64/sve/pack_fcvt_signed_1.c | 2 +- .../gcc.target/aarch64/sve/pack_fcvt_unsigned_1.c | 2 +- .../gcc.target/aarch64/sve/pack_float_1.c | 2 +- .../gcc.target/aarch64/sve/unpack_float_1.c | 2 +- .../gcc.target/aarch64/sve/unpacked_cvtf_1.c | 217 +++++++++++ .../gcc.target/aarch64/sve/unpacked_cvtf_2.c | 23 ++ .../gcc.target/aarch64/sve/unpacked_cvtf_3.c | 12 + .../gcc.target/aarch64/sve/unpacked_fcvt_1.c | 118 ++++++ .../gcc.target/aarch64/sve/unpacked_fcvt_2.c | 16 + .../gcc.target/aarch64/sve/unpacked_fcvtz_1.c | 244 ++++++++++++ .../gcc.target/aarch64/sve/unpacked_fcvtz_2.c | 26 ++ libgcobol/common-defs.h | 2 +- 46 files changed, 2163 insertions(+), 1226 deletions(-) create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/unpacked_cvtf_1.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/unpacked_cvtf_2.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/unpacked_cvtf_3.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/unpacked_fcvt_1.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/unpacked_fcvt_2.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/unpacked_fcvtz_1.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/unpacked_fcvtz_2.c