-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0422dfe
commit d764aa7
Showing
1 changed file
with
21 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,25 @@ | ||
|
||
2024-12-18 Emilien Lemaire <[email protected]> | ||
|
||
* cobgen.c (output_size): use `compx_size` when usage is COMP-X | ||
* cobgen.c (output_attr): override type to `COB_TYPE_NUMERIC_BINARY` | ||
when usage is `COMP-X` | ||
* field.c: Increment `pic_digits` values by one | ||
* field.c (setup_parameters): set the `compx_size` and override usage | ||
of `COMP-N` to `COMP-X` field when picture starts with `X` | ||
* field.c (compute_size): leave `align_size` to 1 when usage is | ||
`COMP-x` and use `compx_size` to compute size of `COMP-X` | ||
* tree.c (cb_tree_category): `COMP-X` is of category | ||
`CB_CATEGORY_NUMERIC`. | ||
* tree.c (cb_field_size): size of `COMP-X` field and references is | ||
`compx_size` | ||
* tree.h (struct cob_field): add `compx_size` to `cob_field` | ||
* typeck.c (cb_check_numeric_name): `COMP-X` is numeric name | ||
* typeck.c (cb_check_numeric_edited_name): `COMP-X` is numeric edited | ||
name | ||
* typeck.c (validate_move): `COMP-x` is validated when dst is category | ||
`ALPHANUMERIC` or `ALPHANUMERIC-EDITED`. | ||
|
||
2022-12-08 Simon Sobisch <[email protected]> | ||
|
||
* cobc.c (process_command_line): fix leak for --copy and -include parsing | ||
|