From 6db73509bce1a241040039dd5466977a7356a913 Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Tue, 22 Sep 2009 23:31:04 +0200 Subject: [PATCH] exec-all.h: increase OPC_BUF_SIZE Increase OPC_BUF_SIZE to compensate the MAX_OP_PER_INSTR's increase. Signed-off-by: Aurelien Jarno --- exec-all.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec-all.h b/exec-all.h index ef783d8d16..93e0b5ddfb 100644 --- a/exec-all.h +++ b/exec-all.h @@ -37,7 +37,7 @@ typedef struct TranslationBlock TranslationBlock; #define MAX_OP_PER_INSTR 96 /* A Call op needs up to 6 + 2N parameters (N = number of arguments). */ #define MAX_OPC_PARAM 10 -#define OPC_BUF_SIZE 512 +#define OPC_BUF_SIZE 640 #define OPC_MAX_SIZE (OPC_BUF_SIZE - MAX_OP_PER_INSTR) /* Maximum size a TCG op can expand to. This is complicated because a