This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from a4e033fb51d match: improve handling of `((signed)x) < 0` to `x >= (unsi [...] new e9757133bba cobol: Corrected FUNCTION CHAR and FUNCTION ORD.
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/genapi.cc | 69 ++++++++++++++------ gcc/cobol/parse.y | 2 +- gcc/cobol/symbols.cc | 7 ++ gcc/cobol/symbols.h | 11 +++- .../group2/CALL_with_OCCURS_DEPENDING_ON.cob | 37 +++++++++++ .../group2/CALL_with_OCCURS_DEPENDING_ON.out | 1 + ...HAR_and_ORD_with_COLLATING_sequence_-_ASCII.cob | 26 ++++++++ ...HAR_and_ORD_with_COLLATING_sequence_-_ASCII.out | 11 ++++ ...AR_and_ORD_with_COLLATING_sequence_-_EBCDIC.cob | 27 ++++++++ ...AR_and_ORD_with_COLLATING_sequence_-_EBCDIC.out | 11 ++++ ...-BOUND-REF-MOD_checking_process_termination.cob | 41 ++++++++++++ ...-BOUND-REF-MOD_checking_process_termination.out | 4 ++ ...=> Intrinsics_without_FUNCTION_keyword__3_.cob} | 0 .../cobol.dg/group2/Length_overflow__2_.out | 2 +- .../group2/Length_overflow_with_offset__1_.out | 2 +- .../Occurs_DEPENDING_ON__source_and_dest.cob | 48 ++++++++++++++ .../Occurs_DEPENDING_ON__source_and_dest.out | 21 ++++++ gcc/testsuite/cobol.dg/group2/Offset_overflow.out | 2 +- .../cobol.dg/group2/Recursive_subscripts.cob | 27 ++++++++ .../cobol.dg/group2/Recursive_subscripts.out | 11 ++++ .../group2/SEARCH_ALL_with_OCCURS_DEPENDING_ON.cob | 42 ++++++++++++ .../group2/SEARCH_ALL_with_OCCURS_DEPENDING_ON.out | 4 ++ .../group2/Subscript_by_arithmetic_expression.cob | 22 +++++++ ...derflow.cob => Subscript_out_of_bounds__1_.cob} | 7 +- .../group2/Subscript_out_of_bounds__1_.out | 2 + ...low__1_.cob => Subscript_out_of_bounds__2_.cob} | 9 +-- .../group2/Subscript_out_of_bounds__2_.out | 2 + .../cobol.dg/group2/Subscripted_refmods.cob | 16 +++++ .../cobol.dg/group2/Subscripted_refmods.out | 3 + .../group2/length_of_ODO_Rules_7__8A__and_8B.cob | 76 ++++++++++++++++++++++ .../group2/length_of_ODO_Rules_7__8A__and_8B.out | 14 ++++ .../length_of_ODO_w_-_reference_modification.cob | 47 +++++++++++++ libgcobol/charmaps.cc | 4 +- libgcobol/charmaps.h | 6 +- libgcobol/intrinsic.cc | 58 ++++++++++++++--- libgcobol/libgcobol.cc | 65 +++++++++++++----- libgcobol/libgcobol.h | 2 + libgcobol/xmlparse.cc | 4 +- 38 files changed, 677 insertions(+), 66 deletions(-) create mode 100644 gcc/testsuite/cobol.dg/group2/CALL_with_OCCURS_DEPENDING_ON.cob create mode 100644 gcc/testsuite/cobol.dg/group2/CALL_with_OCCURS_DEPENDING_ON.out create mode 100644 gcc/testsuite/cobol.dg/group2/CHAR_and_ORD_with_COLLATING_seque [...] create mode 100644 gcc/testsuite/cobol.dg/group2/CHAR_and_ORD_with_COLLATING_seque [...] create mode 100644 gcc/testsuite/cobol.dg/group2/CHAR_and_ORD_with_COLLATING_seque [...] create mode 100644 gcc/testsuite/cobol.dg/group2/CHAR_and_ORD_with_COLLATING_seque [...] create mode 100644 gcc/testsuite/cobol.dg/group2/EC-BOUND-REF-MOD_checking_process [...] create mode 100644 gcc/testsuite/cobol.dg/group2/EC-BOUND-REF-MOD_checking_process [...] copy gcc/testsuite/cobol.dg/group2/{Intrinsics_without_FUNCTION_keyword__2_.cob => [...] create mode 100644 gcc/testsuite/cobol.dg/group2/Occurs_DEPENDING_ON__source_and_dest.cob create mode 100644 gcc/testsuite/cobol.dg/group2/Occurs_DEPENDING_ON__source_and_dest.out create mode 100644 gcc/testsuite/cobol.dg/group2/Recursive_subscripts.cob create mode 100644 gcc/testsuite/cobol.dg/group2/Recursive_subscripts.out create mode 100644 gcc/testsuite/cobol.dg/group2/SEARCH_ALL_with_OCCURS_DEPENDING_ON.cob create mode 100644 gcc/testsuite/cobol.dg/group2/SEARCH_ALL_with_OCCURS_DEPENDING_ON.out create mode 100644 gcc/testsuite/cobol.dg/group2/Subscript_by_arithmetic_expression.cob copy gcc/testsuite/cobol.dg/group2/{Offset_underflow.cob => Subscript_out_of_bound [...] create mode 100644 gcc/testsuite/cobol.dg/group2/Subscript_out_of_bounds__1_.out copy gcc/testsuite/cobol.dg/group2/{Length_overflow__1_.cob => Subscript_out_of_bo [...] create mode 100644 gcc/testsuite/cobol.dg/group2/Subscript_out_of_bounds__2_.out create mode 100644 gcc/testsuite/cobol.dg/group2/Subscripted_refmods.cob create mode 100644 gcc/testsuite/cobol.dg/group2/Subscripted_refmods.out create mode 100644 gcc/testsuite/cobol.dg/group2/length_of_ODO_Rules_7__8A__and_8B.cob create mode 100644 gcc/testsuite/cobol.dg/group2/length_of_ODO_Rules_7__8A__and_8B.out create mode 100644 gcc/testsuite/cobol.dg/group2/length_of_ODO_w_-_reference_modif [...]