On Mon Nov 27 08:35:32 2023 +0000, eric pouech wrote:
I wonder if we'd rather use something like
static int get_varidx_upper_boundary(int varidx) { if (varidx < 26) return 26; if (varidx < 52) return 52; return 62; }
and rather use
varoffset < get_varidx_upper_boundary(varidx)
Checking of the upper boundary is not enough. Var offset should correspond to the given var index.