-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into gc4
- Loading branch information
Showing
25 changed files
with
1,111 additions
and
415 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,28 @@ | |
* typeck.c (cb_emit_call): fixed skipping memory-fence generation for | ||
EXTERNAL/BASED sub-fields | ||
|
||
2023-07-20 Simon Sobisch <[email protected]> | ||
|
||
* field.c (copy_validation): new function | ||
* field.c (copy_validation, copy_into_field): handling validation | ||
* cobc.c (print_fields): leave a hint to field being TYPEDEF | ||
* cobc.c (xref_fields): dont output references for TYPEDEF sub items | ||
|
||
2023-07-19 Simon Sobisch <[email protected]> | ||
|
||
* typeck.c (refmod_checks): extracted from (cb_build_identifier) | ||
* typeck.c (refmod_checks): prevent condition-names to be reference-modified | ||
* parser.y (class_value): improved error messages | ||
* tree.c (cb_build_cast): set numeric category for all integer casts | ||
|
||
2023-07-15 Simon Sobisch <[email protected]> | ||
|
||
* typeck.c (cb_build_identifier): allow ref-mod up to identifier length | ||
* typeck.c (cb_build_identifier): new warning for suspicious reference- | ||
modification with start or length set to maximum and the other to var | ||
* typeck.c (cb_build_move_literal): optimize to cb_build_move_num_zero in | ||
more cases | ||
|
||
2023-07-13 Simon Sobisch <[email protected]> | ||
|
||
* pplex.l (cb_ppecho_direct, output_pending_newlines): output only up | ||
|
@@ -60,6 +82,10 @@ | |
* parser.y (emit_statement): changed from define to inline function | ||
* codegen.c: complete output of program's end source location if requested | ||
* scanner.l: handle line directive in any state | ||
* warning.def, typeck.c (validate_move), cobc.c (process_command_line): | ||
* use existing -Wstrict-typing only for "strict" type mismatches, including | ||
"same size, different type" and move it to -Wextra; the other mismatches | ||
are still raised with -Wall but under the new -Wtyping | ||
|
||
2023-07-11 Fabrice Le Fessant <[email protected]> | ||
|
||
|
@@ -238,6 +264,8 @@ | |
2023-05-30 Simon Sobisch <[email protected]> | ||
|
||
* typeck.y (is_subordinate_to): start with parent, not field | ||
* field.c (copy_into_field_recursive, copy_into_field): handling more | ||
field attributes, don't re-build picture | ||
|
||
2023-05-28 Simon Sobisch <[email protected]> | ||
|
||
|
@@ -248,6 +276,7 @@ | |
|
||
* parser.y, reserved.c: added RIGHTLINE - GC extension matching LEFLINE | ||
* parser.y: drop PENDING from OVERLINE and LEFTLINE | ||
* tree.c (cb_build_intrinsic): refactored to get the name in a single place | ||
|
||
2023-05-24 Simon Sobisch <[email protected]> | ||
|
||
|
@@ -280,13 +309,24 @@ | |
literal for use with CONTROL phrase | ||
* parser.y: adjust a bunch of terminals to match the internal name with | ||
leading underscore as optional | ||
* cobc.c: check for duplicate source file and skip with warning | ||
* pplex.l: check for recursive file by resolved file name | ||
|
||
2023-05-19 Simon Sobisch <[email protected]> | ||
|
||
* parser.y (usage), field.c (validate_field_1): postpone setting of | ||
field attribute flag_is_pointer from parsing the USAGE clause to final | ||
field validation, fixing group and "child" USAGE, as well as | ||
TYPEDEF + SAME AS with pointer types | ||
|
||
2023-05-15 Simon Sobisch <[email protected]> | ||
|
||
* cobc.c (set_category, set_category_from_usage): changed argument types | ||
from int to their matching enum | ||
* tree.c (cb_build_prototype), parser.y (setup_prototype), | ||
tree.h (struct cb_prototype): use matching enum | ||
* tree.c (cb_field), parser.y, reserved.c: added parsing of GROUP-USAGE | ||
* field.c (validate_field_1): handle new attribute group_usage | ||
|
||
2023-05-11 Simon Sobisch <[email protected]> | ||
|
||
|
@@ -351,6 +391,11 @@ | |
* typeck.c (cb_build_move_literal): optimized output for literals to | ||
fields with BLANK WHEN ZERO and SIGN LEADING | ||
|
||
2023-05-02 Simon Sobisch <[email protected]> | ||
|
||
* field.c: inclusion of condition-names (level 88) into field that use a | ||
TYPEDEF defintion | ||
|
||
2023-04-25 Simon Sobisch <[email protected]> | ||
|
||
* codegen.c (output_so_load_version_check): new function to generate | ||
|
@@ -583,8 +628,6 @@ | |
|
||
2023-01-30 Simon Sobisch <[email protected]> | ||
|
||
* field.c (copy_into_field, copy_into_field_recursive): fix missing set | ||
of flag_is_pointer, fixing TYPEDEF + SAME AS with pointer types | ||
* parser.y, reserved.c: add DISPLAY-1 as PENDING, | ||
actually pass NATIONAL usage if specified | ||
* field.c (compute_size), tree.c (cb_tree_type): handle CB_USAGE_NATIONAL | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.