forked from OCamlPro/gnucobol
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
5 changed files
with
202 additions
and
52 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 |
---|---|---|
|
@@ -278,6 +278,10 @@ | |
fields with ANY LENGTH | ||
* typeck.c (cb_build_cond_default, cb_build_cond_fields): extracted | ||
from cb_build_cond | ||
* typeck.c (swap_condition_operands): added and executed in cb_build_cond | ||
if left side is constant or literal | ||
* typeck.c (cb_build_cond_fields): optimize comparison between field and | ||
SPACES up to COB_SPACES_ALPHABETIC_BYTE_LENGTH | ||
|
||
|
||
2022-12-14 Simon Sobisch <[email protected]> | ||
|
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 |
---|---|---|
|
@@ -261,6 +261,20 @@ | |
* fileio.c [!COB_EXPERIMENTAL]: disable "new" status 0P via preprocessor | ||
to inspect later for either include as COB_LS_VALIDATE=PRINT or drop | ||
|
||
2022-12-15 Simon Sobisch <[email protected]> | ||
|
||
* common.c, common.h: new external field + define | ||
COB_SPACES_ALPHABETIC / COB_SPACES_ALPHABETIC_BYTE_LENGTH | ||
* common.c: split sort_compare to variant with and without collation, | ||
using direct memcmp for the later | ||
* common.c (compare_spaces, compare_character): new function used for | ||
comparison of data without collation using memcmp in doubled areas | ||
instead of looping over every character | ||
* common.c (cob_cmp_alnum, cob_cmp_all): use direct memcmp and new | ||
functions if no collation was specified | ||
* common.c (common_cmpc, common_cmps): always use collation as all | ||
callers left in pass it (and otherwise call the new functions) | ||
|
||
2022-12-13 David Declerck <[email protected]> | ||
|
||
* cconv.c: file moved from cobc to libcob | ||
|
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