diff options
author | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2020-06-10 09:52:45 -0400 |
---|---|---|
committer | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2020-06-10 09:52:45 -0400 |
commit | a53ba84a4c0c8cfcc944d08aa30d062afc6df9a3 (patch) | |
tree | 9bd5879ea9ec4034eb1855c219358843c6c790ce /doc | |
parent | dff45aba93a56a50d5ad26c5ef1597abc1e2fe79 (diff) | |
download | egawk-a53ba84a4c0c8cfcc944d08aa30d062afc6df9a3.tar.gz egawk-a53ba84a4c0c8cfcc944d08aa30d062afc6df9a3.tar.bz2 egawk-a53ba84a4c0c8cfcc944d08aa30d062afc6df9a3.zip |
Convert exec_count to unsigned long long.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ChangeLog | 5 | ||||
-rw-r--r-- | doc/bc_notes | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index b7d145e2..94f3e3d5 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2020-06-10 Andrew J. Schorr <aschorr@telemetry-investments.com> + + * bc_notes: Add new field `unsigned long long ldl' to INSTRUCTION, + and update the definition of exec_count. + 2020-06-09 Arnold D. Robbins <arnold@skeeve.com> * gawktexi.in (Implementation Limits): Update the table to be more diff --git a/doc/bc_notes b/doc/bc_notes index b548cec5..bca13a71 100644 --- a/doc/bc_notes +++ b/doc/bc_notes @@ -154,6 +154,7 @@ typedef struct exp_instruction { struct exp_instruction *di; NODE *(*fptr) P((int)); long dl; + unsigned long long ldl; char *name; } d; @@ -251,7 +252,7 @@ typedef struct exp_instruction { /*------------------ pretty printing/profiling --------*/ /* Op_exec_count */ -#define exec_count d.dl +#define exec_count d.ldl /* Op_K_while */ #define while_body d.di |