From 1177462bda60c8410217b1125f66e9b2e9083118 Mon Sep 17 00:00:00 2001 From: Mid <> Date: Thu, 2 Oct 2025 13:45:11 +0300 Subject: [PATCH] Increase XOPBUFSZ to 64 --- src/x86/cg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x86/cg.c b/src/x86/cg.c index 0b978f1..2b74453 100644 --- a/src/x86/cg.c +++ b/src/x86/cg.c @@ -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;