aboutsummaryrefslogtreecommitdiffstats
path: root/doc/bc_notes
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2020-06-10 09:52:45 -0400
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2020-06-10 09:52:45 -0400
commita53ba84a4c0c8cfcc944d08aa30d062afc6df9a3 (patch)
tree9bd5879ea9ec4034eb1855c219358843c6c790ce /doc/bc_notes
parentdff45aba93a56a50d5ad26c5ef1597abc1e2fe79 (diff)
downloadegawk-a53ba84a4c0c8cfcc944d08aa30d062afc6df9a3.tar.gz
egawk-a53ba84a4c0c8cfcc944d08aa30d062afc6df9a3.tar.bz2
egawk-a53ba84a4c0c8cfcc944d08aa30d062afc6df9a3.zip
Convert exec_count to unsigned long long.
Diffstat (limited to 'doc/bc_notes')
-rw-r--r--doc/bc_notes3
1 files changed, 2 insertions, 1 deletions
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