-
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 branch 'gnucobol-3.x' into gcos4gnucobol-3.x
- Loading branch information
Showing
6 changed files
with
402 additions
and
67 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 |
---|---|---|
|
@@ -5,6 +5,14 @@ | |
do not move object files and preprocess files when they were | ||
specified as an explicit target on the command line (-E, -c) | ||
|
||
2023-09-20 Simon Sobisch <[email protected]> | ||
|
||
* typeck.c (cb_build_optim_cond): generate calls to new functions | ||
for numeric zero compare for USAGE DISPLAY and PACKED, as well | ||
as comparison between two USAGE DISPLAY or USAGE DISPLAY to literal | ||
* typeck.c (validate_move): internally change literals like 0.00 | ||
to zero constant allowing use of optimized MOVE code | ||
|
||
2023-10-17 David Declerck <[email protected]> | ||
|
||
BUG #923: generated modules init/clear unused decimal constants | ||
|
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 |
---|---|---|
|
@@ -21,6 +21,20 @@ | |
* fileio.c (lineseq_write, lineseq_rewrite): fix bug #918 partial broken | ||
COB_LS_VALIDATE by incrementing pointer outside of macro IS_BAD_CHAR | ||
|
||
2023-09-20 Simon Sobisch <[email protected]> | ||
|
||
* numeric.c (cob_numdisp_cmp): adjusted | ||
* numeric.c (cob_numeric_display_cmp_zero, cob_bcd_cmp_zero), common.h: | ||
new functions for optimized check of common compare | ||
* numeric.c (cob_set_packed_u64): restore cleanup code for padding byte, | ||
but only execute it if we wrote to first data position | ||
|
||
2023-09-19 Chuck Haatvedt <[email protected]> | ||
|
||
* numeric.c (cob_numdisp_cmp): new version cob_numeric_display_cmp that | ||
does NOT do any conversion to integer formats, also it does not use any | ||
temporary buffers to do the compare which should improve its performance | ||
|
||
2023-09-15 Simon Sobisch <[email protected]> | ||
|
||
Fixing Bug #914 CLOSE LOCK abends program on OPEN | ||
|
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.