Increase XOPBUFSZ to 64

This commit is contained in:
Mid 2025-10-02 13:45:11 +03:00
parent 246f7a3b71
commit 1177462bda

View File

@ -142,7 +142,7 @@ static AST *is_field_access(AST *e) {
* */
static const char *xop_sz(AST *tlc, AST *e, int sz) {
#define XOPBUFS 16
#define XOPBUFSZ 32
#define XOPBUFSZ 64
static char bufs[XOPBUFS][XOPBUFSZ];
static int bufidx = 0;