From a53ba84a4c0c8cfcc944d08aa30d062afc6df9a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Schorr" Date: Wed, 10 Jun 2020 09:52:45 -0400 Subject: Convert exec_count to unsigned long long. --- doc/bc_notes | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'doc/bc_notes') 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 -- cgit v1.2.3